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

1 2 3 45 6 7 8 91011>>

  /developers/build/prebuilts/gradle/SlidingTabsColors/Application/src/main/java/com/example/android/slidingtabscolors/
ContentFragment.java 24 import android.widget.TextView;
66 TextView title = (TextView) view.findViewById(R.id.item_title);
70 TextView indicatorColorView = (TextView) view.findViewById(R.id.item_indicator_color);
75 TextView dividerColorView = (TextView) view.findViewById(R.id.item_divider_color);
  /developers/samples/android/content/documentsUi/DirectorySelection/Application/src/main/java/com/example/android/directoryselection/
DirectoryEntryAdapter.java 24 import android.widget.TextView;
40 private final TextView mFileName;
41 private final TextView mMimeType;
46 mFileName = (TextView) v.findViewById(R.id.textview_filename);
47 mMimeType = (TextView) v.findViewById(R.id.textview_mimetype);
51 public TextView getFileName() {
55 public TextView getMimeType() {
  /developers/samples/android/system/AppUsageStatistics/Application/src/main/java/com/example/android/appusagestatistics/
UsageListAdapter.java 24 import android.widget.TextView;
44 private final TextView mPackageName;
45 private final TextView mLastTimeUsed;
50 mPackageName = (TextView) v.findViewById(R.id.textview_package_name);
51 mLastTimeUsed = (TextView) v.findViewById(R.id.textview_last_time_used);
55 public TextView getLastTimeUsed() {
59 public TextView getPackageName() {
  /developers/samples/android/ui/views/SlidingTabs/SlidingTabsColors/Application/src/main/java/com/example/android/slidingtabscolors/
ContentFragment.java 24 import android.widget.TextView;
66 TextView title = (TextView) view.findViewById(R.id.item_title);
70 TextView indicatorColorView = (TextView) view.findViewById(R.id.item_indicator_color);
75 TextView dividerColorView = (TextView) view.findViewById(R.id.item_divider_color);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
SearchQueryResults.java 26 import android.widget.TextView;
31 TextView mQueryText;
32 TextView mAppDataText;
33 TextView mDeliveredByText;
48 mQueryText = (TextView) findViewById(R.id.txt_query);
49 mAppDataText = (TextView) findViewById(R.id.txt_appdata);
50 mDeliveredByText = (TextView) findViewById(R.id.txt_deliveredby);
CustomTitle.java 26 import android.widget.TextView;
67 final TextView leftText = (TextView) findViewById(R.id.left_text);
68 final TextView rightText = (TextView) findViewById(R.id.right_text);
  /development/samples/browseable/AppUsageStatistics/src/com.example.android.appusagestatistics/
UsageListAdapter.java 24 import android.widget.TextView;
44 private final TextView mPackageName;
45 private final TextView mLastTimeUsed;
50 mPackageName = (TextView) v.findViewById(R.id.textview_package_name);
51 mLastTimeUsed = (TextView) v.findViewById(R.id.textview_last_time_used);
55 public TextView getLastTimeUsed() {
59 public TextView getPackageName() {
  /development/samples/browseable/DirectorySelection/src/com.example.android.directoryselection/
DirectoryEntryAdapter.java 24 import android.widget.TextView;
40 private final TextView mFileName;
41 private final TextView mMimeType;
46 mFileName = (TextView) v.findViewById(R.id.textview_filename);
47 mMimeType = (TextView) v.findViewById(R.id.textview_mimetype);
51 public TextView getFileName() {
55 public TextView getMimeType() {
  /development/samples/browseable/SlidingTabsColors/src/com.example.android.slidingtabscolors/
ContentFragment.java 24 import android.widget.TextView;
66 TextView title = (TextView) view.findViewById(R.id.item_title);
70 TextView indicatorColorView = (TextView) view.findViewById(R.id.item_indicator_color);
75 TextView dividerColorView = (TextView) view.findViewById(R.id.item_divider_color);
  /frameworks/support/compat/java/android/support/v4/widget/
TextViewCompatGingerbread.java 22 import android.widget.TextView;
41 static int getMaxLines(TextView textView) {
46 if (sMaxModeField != null && retrieveIntFromField(sMaxModeField, textView) == LINES) {
53 return retrieveIntFromField(sMaximumField, textView);
59 static int getMinLines(TextView textView) {
64 if (sMinModeField != null && retrieveIntFromField(sMinModeField, textView) == LINES) {
71 return retrieveIntFromField(sMinimumField, textView);
80 field = TextView.class.getDeclaredField(fieldName)
    [all...]
  /frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
SideInfoCardPresenter.java 24 import android.widget.TextView;
64 TextView primaryText = (TextView) cardView.findViewById(R.id.primary_text);
67 TextView secondaryText = (TextView) cardView.findViewById(R.id.secondary_text);
70 TextView extraText = (TextView) cardView.findViewById(R.id.extra_text);
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 27 import android.widget.TextView;
56 TextView text1 = (TextView)view.findViewById(R.id.text1);
57 TextView text2 = (TextView)view.findViewById(R.id.text2);
64 TextView text1 = (TextView)view.findViewById(R.id.text1);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListItem.java 29 import android.widget.TextView;
38 private TextView mChannelView;
39 private TextView mMessageView;
40 private TextView mDateView;
56 mChannelView = (TextView) findViewById(R.id.channel);
57 mDateView = (TextView) findViewById(R.id.date);
58 mMessageView = (TextView) findViewById(R.id.message);
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 24 import android.widget.TextView;
33 public TextView appName;
35 public TextView summary;
36 public TextView disabled;
48 holder.appName = (TextView) convertView.findViewById(android.R.id.title);
50 holder.summary = (TextView) convertView.findViewById(R.id.widget_text1);
51 holder.disabled = (TextView) convertView.findViewById(R.id.widget_text2);
55 // Get the ViewHolder back to get fast access to the TextView
  /packages/apps/Settings/src/com/android/settings/localepicker/
LocaleDragCell.java 24 import android.widget.TextView;
32 private TextView mLabel;
34 private TextView mMiniLabel;
35 private TextView mLocalized;
45 mLabel = (TextView) findViewById(R.id.label);
46 mLocalized = (TextView) findViewById(R.id.l10nWarn);
47 mMiniLabel = (TextView) findViewById(R.id.miniLabel);
  /packages/services/Car/car-support-lib/src/android/support/car/ui/
CarListItemViewHolder.java 24 import android.widget.TextView;
32 public final TextView title;
33 public final TextView text;
36 public final TextView rightText;
43 title = (TextView) v.findViewById(R.id.title);
44 text = (TextView) v.findViewById(R.id.text);
60 rightText = (TextView) rightStub.inflate();
  /cts/tests/tests/widget/src/android/widget/cts/
ViewFlipperTest.java 30 import android.widget.TextView;
83 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
84 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
105 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
106 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
121 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GridLayout3.java 65 TextView c = new TextView(context);
71 TextView c = new TextView(context);
77 TextView c = new TextView(context);
88 TextView c = new TextView(context);
93 TextView c = new EditText(context);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
IncludeTagTest.java 23 import android.widget.TextView;
39 final TextView outerText = (TextView) mBinder.getRoot().findViewById(R.id.outerTextView);
41 final TextView innerText = (TextView) mBinder.getRoot().findViewById(R.id.innerTextView);
43 TextView textView1 = (TextView) mBinder.getRoot().findViewById(R.id.innerTextView1);
45 TextView textView2 = (TextView) mBinder.getRoot().findViewById(R.id.innerTextView2);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
ContentLoadingProgressBarActivity.java 23 import android.widget.TextView;
49 private TextView mShowText;
50 private TextView mShowTextDone;
51 private TextView mHideText;
52 private TextView mHideTextDone;
67 mShowText = (TextView)findViewById(R.id.show_text);
68 mShowTextDone = (TextView)findViewById(R.id.show_text_done);
69 mHideText = (TextView)findViewById(R.id.hide_text);
70 mHideTextDone = (TextView)findViewById(R.id.hide_text_done);
  /developers/build/prebuilts/gradle/BasicMediaRouter/Application/src/main/java/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);
  /developers/build/prebuilts/gradle/NavigationDrawer/Application/src/main/java/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);
  /developers/samples/android/media/BasicMediaRouter/Application/src/main/java/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);
  /developers/samples/android/ui/views/NavigationDrawer/Application/src/main/java/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);
  /development/apps/Development/src/com/android/development/
ProcessInfo.java 25 import android.widget.TextView;
38 TextView processNameView = (TextView) findViewById(R.id.process_name);
45 TextView pkgView = new TextView(this);

Completed in 1366 milliseconds

1 2 3 45 6 7 8 91011>>