HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 76 - 100 of 1355) sorted by null

1 2 34 5 6 7 8 91011>>

  /developers/samples/android/media/BasicMediaRouter/BasicMediaRouterSample/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);
  /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);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
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);
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/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);
SeekBar1.java 22 import android.widget.TextView;
33 TextView mProgressText;
34 TextView mTrackingText;
44 mProgressText = (TextView)findViewById(R.id.progress);
45 mTrackingText = (TextView)findViewById(R.id.tracking);
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(
  /development/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);
  /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);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
DateTimeSuggestionListAdapter.java 12 import android.widget.TextView;
36 TextView labelView = (TextView) layout.findViewById(R.id.date_time_suggestion_value);
37 TextView sublabelView = (TextView) layout.findViewById(R.id.date_time_suggestion_label);
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoLaunchAdapter.java 9 import android.widget.TextView;
48 TextView tvDemoName = (TextView) convertView.findViewById(R.id.tvDemoName);
51 TextView tvDescription = (TextView) convertView.findViewById(R.id.tvDescription);
  /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/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 26 import android.widget.TextView;
55 TextView display = (TextView) view.findViewById(android.R.id.title);
60 TextView destination = (TextView) view.findViewById(android.R.id.text1);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogListItemViews.java 23 import android.widget.TextView;
46 public final TextView listHeaderTextView;
51 TextView listHeaderTextView) {
67 (TextView) view.findViewById(R.id.call_log_header));
78 new TextView(context));
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
FileItemInfoLayout.java 13 import android.widget.TextView;
21 private TextView mFileNameView;
22 private TextView mFileSizeView;
50 mFileNameView = (TextView) findViewById(R.id.misc_filename);
51 mFileSizeView = (TextView) findViewById(R.id.misc_filesize);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AccountItemView.java 21 import android.widget.TextView;
36 private TextView mAccountTextView;
37 private TextView mUnreadCountTextView;
55 mAccountTextView = (TextView)findViewById(R.id.name);
56 mUnreadCountTextView = (TextView)findViewById(R.id.unread);
78 * Sets the unread count, taking care to hide/show the textview if the count
  /packages/apps/Settings/src/com/android/settings/
BatteryInfo.java 33 import android.widget.TextView;
38 private TextView mStatus;
39 private TextView mPower;
40 private TextView mLevel;
41 private TextView mScale;
42 private TextView mHealth;
43 private TextView mVoltage;
44 private TextView mTemperature;
45 private TextView mTechnology;
46 private TextView mUptime
    [all...]
  /cts/tests/src/android/widget/cts/
TabHostStubActivity.java 23 import android.widget.TextView;
51 final TextView tv = new TextView(getApplicationContext());
  /cts/tests/tests/text/src/android/text/method/cts/
KeyListenerTestCase.java 26 import android.widget.TextView;
52 protected TextView mTextView;
64 mTextView = (TextView) mActivity.findViewById(R.id.keylistener_textview);
  /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 1501 milliseconds

1 2 34 5 6 7 8 91011>>