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

1 2 34 5 6 7 8 91011>>

  /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);
IncomingMessageView.java 24 import android.widget.TextView;
47 ((TextView)findViewById(R.id.from)).setText(
49 ((TextView)findViewById(R.id.message)).setText(
  /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;
54 mChannelView = (TextView) findViewById(R.id.channel);
55 mDateView = (TextView) findViewById(R.id.date);
56 mMessageView = (TextView) findViewById(R.id.message);
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 28 import android.widget.TextView;
57 TextView text1 = (TextView)view.findViewById(R.id.text1);
58 TextView text2 = (TextView)view.findViewById(R.id.text2);
65 TextView text1 = (TextView)view.findViewById(R.id.text1);
  /packages/apps/Settings/src/com/android/settings/applications/
AppViewHolder.java 11 import android.widget.TextView;
17 public TextView appName;
19 public TextView appSize;
20 public TextView disabled;
31 holder.appName = (TextView) convertView.findViewById(R.id.app_name);
33 holder.appSize = (TextView) convertView.findViewById(R.id.app_size);
34 holder.disabled = (TextView) convertView.findViewById(R.id.app_disabled);
39 // Get the ViewHolder back to get fast access to the TextView
  /cts/tests/tests/widget/src/android/widget/cts/
ViewFlipperTest.java 29 import android.widget.TextView;
80 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
81 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
101 TextView iv1 = (TextView) mActivity.findViewById(R.id.viewflipper_textview1);
102 TextView iv2 = (TextView) mActivity.findViewById(R.id.viewflipper_textview2);
116 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);
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);
  /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/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/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);
  /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");
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
ImageStateAdapter.java 24 import android.widget.TextView;
46 TextView itemLabel = (TextView) view.findViewById(R.id.imagestate_label);
48 TextView itemParameter = (TextView) view.findViewById(R.id.imagestate_parameter);
  /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/Settings/src/com/android/settings/
BatteryInfo.java 32 import android.widget.TextView;
37 private TextView mStatus;
38 private TextView mPower;
39 private TextView mLevel;
40 private TextView mScale;
41 private TextView mHealth;
42 private TextView mVoltage;
43 private TextView mTemperature;
44 private TextView mTechnology;
45 private TextView mUptime
    [all...]
  /cts/tests/src/android/widget/cts/
TabHostStubActivity.java 23 import android.widget.TextView;
51 final TextView tv = new TextView(getApplicationContext());
  /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 819 milliseconds

1 2 34 5 6 7 8 91011>>