HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 51 - 75 of 1769) sorted by null

1 23 4 5 6 7 8 91011>>

  /developers/samples/android/wearable/wear/WatchFace/Application/src/main/java/com/example/android/wearable/watchface/
TiltWatchFaceConfigActivity.java 23 import android.widget.TextView;
34 TextView label = (TextView)findViewById(R.id.label);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
StyledText.java 25 import android.widget.TextView;
47 TextView tv = (TextView)findViewById(R.id.text);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/activities/
InviteContactActivity.java 22 import android.widget.TextView;
31 private TextView mUriTextView;
38 mUriTextView = (TextView) findViewById(R.id.invite_contact_uri);
ViewGroupActivity.java 22 import android.widget.TextView;
31 private TextView mUriTextView;
38 mUriTextView = (TextView) findViewById(R.id.view_group_uri);
  /development/samples/browseable/WatchFace/Application/src/com.example.android.wearable.watchface/
AnalogAndCardBoundsWatchFaceConfigActivity.java 23 import android.widget.TextView;
34 TextView label = (TextView) findViewById(R.id.label);
TiltWatchFaceConfigActivity.java 23 import android.widget.TextView;
34 TextView label = (TextView)findViewById(R.id.label);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CountingAdapter.java 6 import android.widget.TextView;
37 TextView textView = new TextView(null);
38 textView.setText("Item " + position);
39 return textView;
  /packages/apps/Browser/src/com/android/browser/
AddNewBookmark.java 22 import android.widget.TextView;
30 private TextView mUrlText;
43 mUrlText = (TextView) findViewById(R.id.url);
  /packages/apps/Camera/src/com/android/camera/ui/
AbstractSettingPopup.java 22 import android.widget.TextView;
29 protected TextView mTitle;
39 mTitle = (TextView) findViewById(R.id.title);
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
AbstractSettingPopup.java 23 import android.widget.TextView;
30 protected TextView mTitle;
40 mTitle = (TextView) findViewById(R.id.title);
  /packages/apps/Tag/src/com/android/apps/tag/record/
UnknownRecord.java 25 import android.widget.TextView;
31 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
TextViewCompatUtils.java 20 import android.widget.TextView;
25 // Note that TextView.setCompoundDrawablesRelativeWithIntrinsicBounds(Drawable,Drawable,
28 CompatUtils.getMethod(TextView.class, "setCompoundDrawablesRelativeWithIntrinsicBounds",
35 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(final TextView textView,
38 textView.setCompoundDrawablesWithIntrinsicBounds(start, top, end, bottom);
41 CompatUtils.invoke(textView, null, METHOD_setCompoundDrawablesRelativeWithIntrinsicBounds,
  /sdk/testapps/legacyTest/src/com/android/tests/javaprojecttest/app/
Main.java 5 import android.widget.TextView;
16 TextView tv = (TextView) findViewById(R.id.basicJar);
  /sdk/testapps/testProjectTest/testapp/src/com/android/tests/testprojecttest/lib/
LibActivityTest.java 21 import android.widget.TextView;
44 private TextView mTextView;
59 mTextView = (TextView) a.findViewById(R.id.text);
  /sdk/testapps/testProjectTest/testlib/src/com/android/tests/testprojecttest/lib/
LibActivityTest.java 21 import android.widget.TextView;
44 private TextView mTextView;
59 mTextView = (TextView) a.findViewById(R.id.text);
  /frameworks/base/core/tests/coretests/src/android/view/
CreateViewTest.java 27 import android.widget.TextView;
76 TextView text = new TextView(mContext);
82 TextView text = new TextView(mContext);
93 TextView one = new TextView(mContext);
97 TextView two = new TextView(mContext);
101 TextView three = new TextView(mContext)
    [all...]
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
StringPresenter.java 19 import android.widget.TextView;
26 TextView tv = new TextView(parent.getContext());
36 ((TextView) viewHolder.view).setText(item.toString());
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
PhoneNumberFormatter.java 22 import android.widget.TextView;
30 * Load {@link TextWatcherLoadAsyncTask} in a worker thread and set it to a {@link TextView}.
35 private final TextView mTextView;
37 public TextWatcherLoadAsyncTask(String countryCode, TextView textView) {
39 mTextView = textView;
66 * Delay-set {@link PhoneNumberFormattingTextWatcher} to a {@link TextView}.
69 TextView textView) {
70 new TextWatcherLoadAsyncTask(GeoUtil.getCurrentCountryIso(context), textView)
    [all...]
  /packages/apps/Mms/src/com/android/mms/util/
PhoneNumberFormatter.java 22 import android.widget.TextView;
30 * Load {@link TextWatcherLoadAsyncTask} in a worker thread and set it to a {@link TextView}.
35 private final TextView mTextView;
37 public TextWatcherLoadAsyncTask(String countryCode, TextView textView) {
39 mTextView = textView;
66 * Delay-set {@link PhoneNumberFormattingTextWatcher} to a {@link TextView}.
69 TextView textView) {
70 new TextWatcherLoadAsyncTask(MmsApp.getApplication().getCurrentCountryIso(), textView)
    [all...]
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
BasicNotificationDisplayActivity.java 21 import android.widget.TextView;
36 ((TextView) findViewById(R.id.title)).setText(title);
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
BasicNotificationDisplayActivity.java 21 import android.widget.TextView;
36 ((TextView) findViewById(R.id.title)).setText(title);
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
BasicNotificationDisplayActivity.java 21 import android.widget.TextView;
36 ((TextView) findViewById(R.id.title)).setText(title);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
FillInWrap.java 23 import android.widget.TextView;
30 ((TextView) findViewById(R.id.data)).setText("1\n2\n3\n4\n5");
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ButtonsWithTallTextViewInBetween.java 23 import android.widget.TextView;
35 public TextView getMiddleFiller() {
  /frameworks/base/core/java/android/widget/
TwoLineListItem.java 29 * {@link android.widget.TextView TextViews} elements (or subclasses) with the ID values
48 private TextView mText1;
49 private TextView mText2;
76 mText1 = (TextView) findViewById(com.android.internal.R.id.text1);
77 mText2 = (TextView) findViewById(com.android.internal.R.id.text2);
84 public TextView getText1() {
92 public TextView getText2() {

Completed in 5252 milliseconds

1 23 4 5 6 7 8 91011>>