HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 126 - 150 of 2223) sorted by null

1 2 3 4 56 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/content/
ResourcesSample.java 27 import android.widget.TextView;
49 TextView tv;
59 tv = (TextView)findViewById(R.id.styled_text);
65 tv = (TextView)findViewById(R.id.plain_text);
80 tv = (TextView)findViewById(R.id.res1);
ReadAsset.java 25 import android.widget.TextView;
65 TextView tv = (TextView)findViewById(R.id.text);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DragAndDropDemo.java 25 import android.widget.TextView;
28 TextView mResultText;
36 TextView text = (TextView) findViewById(R.id.drag_text);
47 mResultText = (TextView) findViewById(R.id.drag_result_text);
TableLayout8.java 25 import android.widget.TextView;
57 TextView label = new TextView(this);
61 TextView shortcut = new TextView(this);
HoverInterceptorView.java 25 import android.widget.TextView;
57 TextView textView = (TextView) findViewById(R.id.intercept_message);
59 textView.setText(getResources().getString(
63 textView.setText(getResources().getString(
ScrollView2.java 24 import android.widget.TextView;
39 TextView textView = new TextView(this);
40 textView.setText("Text View " + i);
45 layout.addView(textView, p);
Tabs2.java 25 import android.widget.TextView;
53 final TextView tv = new TextView(this);
  /development/samples/browseable/BasicMediaRouter/src/com.example.android.basicmediarouter/
SamplePresentation.java 24 import android.widget.TextView;
40 private TextView mText;
55 mText = (TextView) findViewById(R.id.display_text);
60 TextView smallText = (TextView) findViewById(R.id.display_smalltext);
  /development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
PlanetAdapter.java 25 import android.widget.TextView;
45 public final TextView mTextView;
47 public ViewHolder(TextView v) {
62 TextView tv = (TextView) v.findViewById(android.R.id.text1);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
TextViewTransformState.java 23 import android.widget.TextView;
32 private TextView mText;
37 if (view instanceof TextView) {
38 mText = (TextView) view;
56 private int getInnerHeight(TextView text) {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MarqueeActivity.java 26 import android.widget.TextView;
37 final TextView text1 = new TextView(this);
38 text1.setText("This is a marquee inside a TextView");
45 final TextView text2 = new TextView(this);
46 text2.setText("This is a marquee inside a TextView");
  /frameworks/support/compat/jellybean-mr1/android/support/v4/widget/
TextViewCompatJbMr1.java 23 import android.widget.TextView;
27 public static void setCompoundDrawablesRelative(@NonNull TextView textView,
30 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
31 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom);
34 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView,
37 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
38 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
42 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView
    [all...]
  /frameworks/support/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
ContentViewActivity.java 29 import android.widget.TextView;
43 TextView tv = (TextView) findViewById(R.id.status_text);
46 TextView tv = (TextView) findViewById(R.id.status_text);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ListRowHoverCardView.java 23 import android.widget.TextView;
30 private final TextView mTitleView;
31 private final TextView mDescriptionView;
45 mTitleView = (TextView) findViewById(R.id.title);
46 mDescriptionView = (TextView) findViewById(R.id.description);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
PhoneNumberFormatter.java 22 import android.widget.TextView;
31 * Load {@link TextWatcherLoadAsyncTask} in a worker thread and set it to a {@link TextView}.
36 private final TextView mTextView;
40 String countryCode, TextView textView, boolean formatAfterWatcherSet) {
42 mTextView = textView;
68 * Delay-set {@link PhoneNumberFormattingTextWatcher} to a {@link TextView}.
71 TextView textView) {
72 setPhoneNumberFormattingTextWatcher(context, textView,
    [all...]
  /packages/apps/Settings/src/com/android/settings/fingerprint/
SetupFingerprintEnrollFinish.java 23 import android.widget.TextView;
53 final TextView message = (TextView) findViewById(R.id.message);
56 final TextView secondaryMessage = (TextView) findViewById(R.id.message_secondary);
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
ActionItem.java 21 import android.widget.TextView;
56 TextView titleView = (TextView) view.findViewById(R.id.title);
58 TextView descriptionView = (TextView) view.findViewById(R.id.description);
CompoundButtonItem.java 21 import android.widget.TextView;
30 private TextView mTextView;
57 mTextView = (TextView) view.findViewById(getTitleViewId());
58 TextView descriptionView = (TextView) view.findViewById(getDescriptionViewId());
  /cts/tests/tests/widget/src/android/widget/cts/
TabHostCtsActivity.java 23 import android.widget.TextView;
51 final TextView tv = new TextView(getApplicationContext());
  /developers/build/prebuilts/gradle/DocumentCentricApps/Application/src/main/java/com/example/android/documentcentricapps/
NewDocumentActivity.java 23 import android.widget.TextView;
39 private TextView mDocumentCounterTextView;
48 mDocumentCounterTextView = (TextView) findViewById(
  /developers/samples/android/ui/activitytasks/DocumentCentricApps/Application/src/main/java/com/example/android/documentcentricapps/
NewDocumentActivity.java 23 import android.widget.TextView;
39 private TextView mDocumentCounterTextView;
48 mDocumentCounterTextView = (TextView) findViewById(
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IncomingMessageView.java 24 import android.widget.TextView;
47 ((TextView)findViewById(R.id.from)).setText(
49 ((TextView)findViewById(R.id.message)).setText(
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
ForegroundNdefPush.java 26 import android.widget.TextView;
33 private TextView mText;
46 mText = (TextView) findViewById(R.id.text);
TechFilter.java 25 import android.widget.TextView;
28 private TextView mText;
36 mText = (TextView) findViewById(R.id.text);
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MorseCode.java 27 import android.widget.TextView;
53 private TextView mTextView;
75 mTextView = (TextView)findViewById(R.id.text);

Completed in 1246 milliseconds

1 2 3 4 56 7 8 91011>>