HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 251 - 275 of 1057) sorted by null

<<11121314151617181920>>

  /packages/apps/Contacts/src/com/android/contacts/util/
AccountsListAdapter.java 26 import android.widget.TextView;
89 final TextView text1 = (TextView) resultView.findViewById(android.R.id.text1);
90 final TextView text2 = (TextView) resultView.findViewById(android.R.id.text2);
  /packages/apps/Contacts/tests/src/com/android/contacts/detail/
ContactDetailDisplayUtilsTest.java 26 import android.widget.TextView;
74 TextView textView = (TextView) parent.findViewById(textViewId);
75 assertNotNull(textView);
76 assertEquals(View.VISIBLE, textView.getVisibility());
77 assertEquals(expectedText, textView.getText().toString());
82 TextView textView = (TextView) parent.findViewById(textViewId)
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/
SelectAccountDialogFragment.java 30 import android.widget.TextView;
61 final TextView text1 = (TextView)resultView.findViewById(android.R.id.text1);
62 final TextView text2 = (TextView)resultView.findViewById(android.R.id.text2);
  /packages/apps/Email/src/com/android/email/activity/
MailboxListItem.java 28 import android.widget.TextView;
53 private TextView mLabelName;
54 private TextView mLabelCount;
85 mLabelName = (TextView)findViewById(R.id.mailbox_name);
86 mLabelCount = (TextView)findViewById(R.id.message_count);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
BaseSuggestionView.java 28 import android.widget.TextView;
35 protected TextView mText1;
36 protected TextView mText2;
57 mText1 = (TextView) findViewById(R.id.text1);
58 mText2 = (TextView) findViewById(R.id.text2);
  /packages/apps/Settings/src/com/android/settings/
SetFullBackupPassword.java 28 import android.widget.TextView;
35 TextView mCurrentPw, mNewPw, mConfirmNewPw;
87 mCurrentPw = (TextView) findViewById(R.id.current_backup_pw);
88 mNewPw = (TextView) findViewById(R.id.new_backup_pw);
89 mConfirmNewPw = (TextView) findViewById(R.id.confirm_new_backup_pw);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
CheckBoxAndSettingsPreference.java 29 import android.widget.TextView;
35 private TextView mTitleText;
36 private TextView mSummaryText;
59 mTitleText = (TextView)view.findViewById(android.R.id.title);
60 mSummaryText = (TextView)view.findViewById(android.R.id.summary);
  /packages/apps/Tag/src/com/android/apps/tag/
TagViewer.java 34 import android.widget.TextView;
85 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false);
96 TextView empty = (TextView) inflater.inflate(R.layout.tag_text, content, false);
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DropDownEditor.java 26 import android.widget.TextView;
46 TextView v = (TextView) super.getDropDownView(position, convertView, parent);
55 TextView v = (TextView) super.getView(position, convertView, parent);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimatorEvents.java 24 import android.widget.TextView;
50 TextView startText, repeatText, cancelText, endText;
51 TextView startTextAnimator, repeatTextAnimator, cancelTextAnimator, endTextAnimator;
60 startText = (TextView) findViewById(R.id.startText);
62 repeatText = (TextView) findViewById(R.id.repeatText);
64 cancelText = (TextView) findViewById(R.id.cancelText);
66 endText = (TextView) findViewById(R.id.endText);
68 startTextAnimator = (TextView) findViewById(R.id.startTextAnimator);
70 repeatTextAnimator = (TextView) findViewById(R.id.repeatTextAnimator);
72 cancelTextAnimator = (TextView) findViewById(R.id.cancelTextAnimator)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/media/
AudioFxDemo.java 40 import android.widget.TextView;
55 private TextView mStatusTextView;
63 mStatusTextView = new TextView(this);
101 TextView eqTextView = new TextView(this);
113 TextView freqTextView = new TextView(this);
124 TextView minDbTextView = new TextView(this);
130 TextView maxDbTextView = new TextView(this)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 31 import android.widget.TextView;
65 String title = ((TextView) info.targetView).getText().toString();
111 public TextView getGenericView() {
116 TextView textView = new TextView(ExpandableList1.this);
117 textView.setLayoutParams(lp);
119 textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
121 textView.setPadding(36, 0, 0, 0);
122 return textView;
    [all...]
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorLEDController.java 13 import android.widget.TextView;
24 private TextView mTarget;
27 LedValueUpdater(TextView target, int colorIndex) {
80 TextView label = (TextView) g.getChildAt(0);
82 TextView valueText = (TextView) g.getChildAt(2);
InputController.java 8 import android.widget.TextView;
11 private TextView mTemperature;
12 private TextView mLightView;
13 private TextView mLightRawView;
22 mTemperature = (TextView) findViewById(R.id.tempValue);
23 mLightView = (TextView) findViewById(R.id.lightPercentValue);
24 mLightRawView = (TextView) findViewById(R.id.lightRawValue);
  /frameworks/base/core/tests/coretests/src/android/view/
VisibilityTest.java 26 import android.widget.TextView;
35 private TextView mRefUp;
36 private TextView mRefDown;
37 private TextView mVictim;
51 mRefUp = (TextView) a.findViewById(R.id.refUp);
52 mRefDown = (TextView) a.findViewById(R.id.refDown);
53 mVictim = (TextView) a.findViewById(R.id.victim);
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 31 import android.widget.TextView;
55 TextView startSizeTextView = (TextView) findViewById(R.id.totalsize);
124 TextView freeSizeTextView = (TextView) findViewById(R.id.freesize);
126 TextView statusTextView = (TextView) findViewById(R.id.status);
  /packages/apps/Browser/src/com/android/browser/
HttpAuthenticationDialog.java 26 import android.widget.TextView;
27 import android.widget.TextView.OnEditorActionListener;
40 private TextView mUsernameView;
41 private TextView mPasswordView;
113 mUsernameView = (TextView) v.findViewById(R.id.username_edit);
114 mPasswordView = (TextView) v.findViewById(R.id.password_edit);
117 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallDetailHistoryAdapter.java 26 import android.widget.TextView;
139 TextView callTypeTextView = (TextView) result.findViewById(R.id.call_type_text);
140 TextView dateView = (TextView) result.findViewById(R.id.date);
141 TextView durationView = (TextView) result.findViewById(R.id.duration);
  /packages/apps/LegacyCamera/src/com/android/camera/
RotateDialogController.java 29 import android.widget.TextView;
43 private TextView mRotateDialogTitle;
45 private TextView mRotateDialogText;
46 private TextView mRotateDialogButton1;
47 private TextView mRotateDialogButton2;
65 mRotateDialogTitle = (TextView) v.findViewById(R.id.rotate_dialog_title);
67 mRotateDialogText = (TextView) v.findViewById(R.id.rotate_dialog_text);
  /packages/experimental/NotificationLog/src/com/android/notificationlog/
NotificationLogActivity.java 20 import android.widget.TextView;
84 TextView title = (TextView)view.findViewById(R.id.title);
85 TextView more = (TextView)view.findViewById(R.id.text);
86 TextView time = (TextView)view.findViewById(R.id.time);
  /cts/tests/tests/widget/src/android/widget/cts/
LinearLayoutTest.java 32 import android.widget.TextView;
149 TextView weight02 = (TextView) mActivity.findViewById(R.id.weight_0_2);
150 TextView weight05 = (TextView) mActivity.findViewById(R.id.weight_0_5);
151 TextView weight03 = (TextView) mActivity.findViewById(R.id.weight_0_3);
234 TextView topView = (TextView) mActivity.findViewById(R.id.gravity_top);
235 TextView centerView = (TextView) mActivity.findViewById(R.id.gravity_center_vertical)
    [all...]
CursorAdapterTest.java 36 import android.widget.TextView;
182 TextView textView = new TextView(mContext);
183 textView.setText("getView test");
189 cursorAdapter.getView(0, textView, mParent);
196 cursorAdapter.getView(100, textView, mParent);
202 TextView retView = (TextView) cursorAdapter.getView(0, null, mParent);
207 retView = (TextView) cursorAdapter.getView(1, textView, mParent)
    [all...]
TabWidgetTest.java 29 import android.widget.TextView;
58 TextView tv0 = new TextView(mActivity);
59 TextView tv1 = new TextView(mActivity);
84 tabWidget.addView(new TextView(mActivity));
102 tabWidget.addView(new TextView(mActivity));
143 tabWidget.addView(new TextView(mActivity));
144 tabWidget.addView(new TextView(mActivity));
164 View view1 = new TextView(mActivity)
    [all...]
  /development/apps/Development/src/com/android/development/
PackageSummary.java 39 import android.widget.TextView;
44 private TextView mPackage;
46 private TextView mClass;
47 private TextView mLabel;
54 private TextView mTask;
55 private TextView mVersion;
56 private TextView mProcess;
57 private TextView mUid;
58 private TextView mSource;
59 private TextView mData
    [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EnvReverbTest.java 30 import android.widget.TextView;
58 TextView mSendLevelDisplay;
72 TextView textView;
78 textView = (TextView) findViewById(R.id.sessionText);
81 R.id.stop1, stop, textView,
85 R.id.stop1, stop, textView,
91 mSendLevelDisplay = (TextView)findViewById(R.id.sendLevelValue);
114 textView = (TextView)findViewById(R.id.rvbParam1Value)
    [all...]

Completed in 1052 milliseconds

<<11121314151617181920>>