OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextView
(Results
476 - 500
of
1355
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlertAdapter.java
31
import android.widget.
TextView
;
86
TextView
titleView = (
TextView
) view.findViewById(R.id.event_title);
87
TextView
whenView = (
TextView
) view.findViewById(R.id.when);
88
TextView
whereView = (
TextView
) view.findViewById(R.id.where);
/packages/apps/Camera/src/com/android/camera/
RotateDialogController.java
27
import android.widget.
TextView
;
44
private
TextView
mRotateDialogTitle;
46
private
TextView
mRotateDialogText;
47
private
TextView
mRotateDialogButton1;
48
private
TextView
mRotateDialogButton2;
66
mRotateDialogTitle = (
TextView
) v.findViewById(R.id.rotate_dialog_title);
68
mRotateDialogText = (
TextView
) v.findViewById(R.id.rotate_dialog_text);
/packages/apps/Contacts/src/com/android/contacts/activities/
ContactEditorAccountsChangedActivity.java
29
import android.widget.
TextView
;
92
final
TextView
textView
= (
TextView
) findViewById(R.id.text);
93
textView
.setText(getString(R.string.contact_editor_prompt_multiple_accounts));
109
final
TextView
textView
= (
TextView
) findViewById(R.id.text);
114
textView
.setText(getString(R.string.contact_editor_prompt_one_account,
136
final
TextView
textView = (TextView) findViewById(R.id.text)
[
all
...]
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
ResultActivity.java
38
import android.widget.
TextView
;
134
TextView
label = new
TextView
(this);
137
TextView
value = new
TextView
(this);
166
TextView
labelView = new
TextView
(this);
/packages/apps/Mms/src/com/android/mms/ui/
ConversationListItem.java
35
import android.widget.
TextView
;
51
private
TextView
mSubjectView;
52
private
TextView
mFromView;
53
private
TextView
mDateView;
83
mFromView = (
TextView
) findViewById(R.id.from);
84
mSubjectView = (
TextView
) findViewById(R.id.subject);
86
mDateView = (
TextView
) findViewById(R.id.date);
/packages/apps/Settings/src/com/android/settings/
ConfirmLockPassword.java
42
import android.widget.
TextView
;
43
import android.widget.
TextView
.OnEditorActionListener;
74
private
TextView
mPasswordEntry;
76
private
TextView
mHeaderText;
106
mPasswordEntry = (
TextView
) view.findViewById(R.id.password_entry);
111
mHeaderText = (
TextView
) view.findViewById(R.id.headerText);
194
public boolean onEditorAction(
TextView
v, int actionId, KeyEvent event) {
UsageStats.java
47
import android.widget.
TextView
;
97
TextView
pkgName;
98
TextView
launchCount;
99
TextView
usageTime;
172
holder.pkgName = (
TextView
) convertView.findViewById(R.id.package_name);
173
holder.launchCount = (
TextView
) convertView.findViewById(R.id.launch_count);
174
holder.usageTime = (
TextView
) convertView.findViewById(R.id.usage_time);
177
// Get the ViewHolder back to get fast access to the
TextView
/packages/apps/Settings/src/com/android/settings/applications/
AppOpsDetails.java
40
import android.widget.
TextView
;
58
private
TextView
mAppVersion;
69
TextView
label = (
TextView
) appSnippet.findViewById(R.id.app_name);
72
mAppVersion = (
TextView
) appSnippet.findViewById(R.id.app_size);
139
((
TextView
)view.findViewById(R.id.op_name)).setText(
141
((
TextView
)view.findViewById(R.id.op_time)).setText(
/packages/apps/Settings/src/com/android/settings/nfc/
PaymentSettings.java
40
import android.widget.
TextView
;
86
TextView
emptyText = (
TextView
) getView().findViewById(R.id.nfc_payment_empty_text);
87
TextView
learnMore = (
TextView
) getView().findViewById(R.id.nfc_payment_learn_more);
108
TextView
learnMore = (
TextView
) v.findViewById(R.id.nfc_payment_learn_more);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderItemView.java
26
import android.widget.
TextView
;
43
private
TextView
mFolderTextView;
44
private
TextView
mUnreadCountTextView;
45
private
TextView
mUnseenCountTextView;
86
mFolderTextView = (
TextView
)findViewById(R.id.name);
87
mUnreadCountTextView = (
TextView
)findViewById(R.id.unread);
88
mUnseenCountTextView = (
TextView
)findViewById(R.id.unseen);
148
* Sets the unread count, taking care to hide/show the
textview
if the count is zero/non-zero.
158
* Sets the unseen count, taking care to hide/show the
textview
if the count is zero/non-zero.
/packages/apps/Settings/src/com/android/settings/accessibility/
ToggleAccessibilityServicePreferenceFragment.java
37
import android.widget.
TextView
;
202
TextView
capabilitiesHeaderView = (
TextView
) content.findViewById(
218
TextView
labelView = (
TextView
) capabilityView.findViewById(
222
TextView
descriptionView = (
TextView
) capabilityView.findViewById(
244
labelView = (
TextView
) capabilityView.findViewById(
248
descriptionView = (
TextView
) capabilityView.findViewById(
/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/
StreamingVideoActivity.java
28
import android.widget.
TextView
;
133
TextView
empty = (
TextView
) findViewById(android.R.id.empty);
/cts/tests/tests/text/src/android/text/util/cts/
LinkifyTest.java
27
import android.widget.
TextView
;
102
TextView
tv = new
TextView
(mContext);
118
Linkify.addLinks((
TextView
)null, Linkify.WEB_URLS);
124
assertFalse(Linkify.addLinks((
TextView
)null, 0));
129
TextView
tv = new
TextView
(mContext);
147
Linkify.addLinks((
TextView
) null, LINKIFY_TEST_PATTERN, "Test:");
160
tv = new
TextView
(mContext);
170
TextView
tv = new TextView(mContext)
[
all
...]
/developers/build/prebuilts/gradle/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java
28
import android.widget.
TextView
;
81
TextView
tv = (
TextView
) ((Activity)mContext).findViewById(R.id.sample_output);
83
Log.e(TAG, "
TextView
is null?!");
/developers/build/prebuilts/gradle/DoneBar/DoneBarSample/src/main/java/com/example/android/donebar/
MainActivity.java
32
import android.widget.
TextView
;
87
((
TextView
) convertView.findViewById(android.R.id.text1)).setText(
89
((
TextView
) convertView.findViewById(android.R.id.text2)).setText(
/developers/samples/android/content/contacts/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/basiccontactables/
ContactablesLoaderCallbacks.java
28
import android.widget.
TextView
;
81
TextView
tv = (
TextView
) ((Activity)mContext).findViewById(R.id.sample_output);
83
Log.e(TAG, "
TextView
is null?!");
/development/apps/GestureBuilder/src/com/android/gesture/builder/
CreateGestureActivity.java
27
import android.widget.
TextView
;
80
final
TextView
input = (
TextView
) findViewById(R.id.gesture_name);
/development/samples/ApiDemos/src/com/example/android/apis/accessibility/
TaskListView.java
30
import android.widget.
TextView
;
96
TextView
label = (
TextView
)(convertView.findViewById(R.id.tasklist_label));
/development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarTabs.java
29
import android.widget.
TextView
;
126
TextView
text = (
TextView
) fragView.findViewById(R.id.text);
QuickContactsDemo.java
31
import android.widget.
TextView
;
91
cache.nameView = (
TextView
) view.findViewById(R.id.name);
100
public
TextView
nameView;
/development/samples/ApiDemos/src/com/example/android/apis/preference/
MyPreference.java
28
import android.widget.
TextView
;
49
final
TextView
myTextView = (
TextView
) view.findViewById(R.id.mypreference_widget);
/development/samples/ApiDemos/src/com/example/android/apis/view/
List9.java
33
import android.widget.
TextView
;
53
private
TextView
mDialogText;
73
mDialogText = (
TextView
) inflate.inflate(R.layout.list_position, null);
SearchViewActionBar.java
34
import android.widget.
TextView
;
45
private
TextView
mStatusView;
54
mStatusView = (
TextView
) findViewById(R.id.status_text);
WindowFocusObserver.java
30
import android.widget.
TextView
;
35
TextView
mState;
55
mState = (
TextView
)findViewById(R.id.focus_state);
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
AppNavHomeActivity.java
28
import android.widget.
TextView
;
115
TextView
tv = (
TextView
) convertView.getTag();
Completed in 276 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>