HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 476 - 500 of 864) sorted by null

<<11121314151617181920>>

  /packages/apps/Tag/src/com/android/apps/tag/record/
TextRecord.java 38 import android.widget.TextView;
64 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
  /packages/apps/VideoEditor/src/com/android/videoeditor/
BaseAdapterWithImages.java 33 import android.widget.TextView;
65 protected final TextView mNameView;
69 mNameView = (TextView) rowView.findViewById(R.id.item_name);
TransitionsActivity.java 24 import android.widget.TextView;
48 private TextView mTransitionDurationView;
59 mTransitionDurationView = (TextView)findViewById(R.id.transition_duration);
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
BluetoothChat.java 40 import android.widget.TextView;
153 TextView view = (TextView) findViewById(R.id.edit_text_out);
220 private TextView.OnEditorActionListener mWriteListener =
221 new TextView.OnEditorActionListener() {
222 public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
  /packages/apps/Music/src/com/android/music/
MediaPickerActivity.java 35 import android.widget.TextView;
250 TextView tv = (TextView) v.findViewById(R.id.duration);
261 TextView tv = (TextView) view.findViewById(R.id.line1);
265 tv = (TextView) view.findViewById(R.id.line2);
  /packages/apps/Settings/src/com/android/settings/
CredentialStorage.java 37 import android.widget.TextView;
354 private final TextView mOldPassword;
355 private final TextView mError;
371 ((TextView) view.findViewById(R.id.hint)).setText(text);
372 mOldPassword = (TextView) view.findViewById(R.id.old_password);
375 mError = (TextView) view.findViewById(R.id.error);
  /cts/tests/src/android/widget/cts/
MockTextView.java 28 import android.widget.TextView;
30 public class MockTextView extends TextView {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentArguments.java 30 import android.widget.TextView;
102 ((TextView)tv).setText(mLabel != null ? mLabel : "(no label)");
FragmentCustomAnimations.java 30 import android.widget.TextView;
125 ((TextView)tv).setText("Fragment #" + mNum);
FragmentStack.java 30 import android.widget.TextView;
118 ((TextView)tv).setText("Fragment #" + mNum);
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarLander.java 24 import android.widget.TextView;
133 // give the LunarView a handle to the TextView used for messages
134 mLunarView.setTextView((TextView) findViewById(R.id.text));
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentArgumentsSupport.java 32 import android.widget.TextView;
107 ((TextView)tv).setText(mLabel != null ? mLabel : "(no label)");
FragmentCustomAnimationSupport.java 31 import android.widget.TextView;
122 ((TextView)tv).setText("Fragment #" + mNum);
FragmentStackSupport.java 32 import android.widget.TextView;
131 ((TextView)tv).setText("Fragment #" + mNum);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
CarrierLabel.java 27 import android.widget.TextView;
39 public class CarrierLabel extends TextView {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DateView.java 27 import android.widget.TextView;
33 public final class DateView extends TextView {
  /frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
ConfirmDialog.java 33 import android.widget.TextView;
66 ((TextView) view.findViewById(R.id.prompt)).setText(
  /packages/apps/Contacts/tests/src/com/android/contacts/list/
ContactListItemViewTest.java 28 import android.widget.TextView;
116 view.getNameTextView().setText("", TextView.BufferType.SPANNABLE);
  /packages/apps/Email/src/com/android/email/view/
CertificateSelector.java 30 import android.widget.TextView;
44 private TextView mAliasText;
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
EffectAction.java 24 import android.widget.TextView;
72 return ((TextView) findViewById(R.id.effect_label)).getText();
  /cts/tests/tests/text/src/android/text/method/cts/
ArrowKeyMovementMethodTest.java 37 import android.widget.TextView;
38 import android.widget.TextView.BufferType;
57 private TextView mTextView;
125 notes = "Test {@link ArrowKeyMovementMethod#onTakeFocus(TextView, Spannable, int)}. "
128 args = {TextView.class, Spannable.class, int.class}
134 * The following assertions depend on whether the TextView has a layout.
166 // wait until the textView gets layout
190 notes = "Test {@link ArrowKeyMovementMethod#onTakeFocus(TextView, Spannable, int)}. "
193 args = {TextView.class, Spannable.class, int.class}
204 notes = "Test {@link ArrowKeyMovementMethod#onTakeFocus(TextView, Spannable, int)}.
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TabHostTest.java 35 import android.widget.TextView;
336 TextView textView = (TextView) tabHost.getCurrentView();
337 assertEquals(TabHostStubActivity.INITIAL_VIEW_TEXT, textView.getText().toString());
387 TextView child0 = (TextView) tabHost.getTabContentView().getChildAt(0);
391 TextView child2 = (TextView) tabHost.getTabContentView().getChildAt(2);
403 child0 = (TextView) tabHost.getTabContentView().getChildAt(0)
    [all...]
ListViewTest.java 49 import android.widget.TextView;
415 final TextView footerView1 = new TextView(mActivity);
417 final TextView footerView2 = new TextView(mActivity);
499 final TextView headerView1 = (TextView) mActivity.findViewById(R.id.headerview1);
500 final TextView headerView2 = (TextView) mActivity.findViewById(R.id.headerview2);
667 final TextView child = (TextView) mAdapter_countries.getView(2, null, mListView)
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CallCard.java 40 import android.widget.TextView;
80 private TextView mCallStateLabel;
81 private TextView mElapsedTime;
89 private TextView mName;
90 private TextView mPhoneNumber;
91 private TextView mLabel;
92 private TextView mCallTypeLabel;
93 private TextView mSocialStatus;
97 private TextView mSecondaryCallName;
98 private TextView mSecondaryCallStatus
    [all...]
  /cts/tests/src/android/widget/cts/util/
ExpandableListScenario.java 30 import android.widget.TextView;
235 ((TextView) convertView).setText(getValueAtPosition(packedPosition));
254 TextView result = new TextView(parent.getContext());

Completed in 1099 milliseconds

<<11121314151617181920>>