HomeSort by relevance Sort by last modified time
    Searched full:textview (Results 201 - 225 of 3198) sorted by null

1 2 3 4 5 6 7 891011>>

  /development/samples/ApiDemos/res/layout/
search_query_results.xml 25 <TextView
37 <TextView
41 <TextView android:id="@+id/txt_query"
52 <TextView
56 <TextView android:id="@+id/txt_appdata"
67 <TextView
71 <TextView android:id="@+id/txt_deliveredby"
animator_events.xml 57 <TextView
62 <TextView
68 <TextView
74 <TextView
80 <TextView
92 <TextView
97 <TextView
103 <TextView
109 <TextView
115 <TextView
    [all...]
styled_text.xml 24 <TextView
29 <TextView
35 <TextView
40 <TextView
45 <TextView android:id="@+id/text"
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
ColorLEDController.java 13 import android.widget.TextView;
24 private TextView mTarget;
27 LedValueUpdater(TextView target, int colorIndex) {
80 TextView label = (TextView) g.getChildAt(0);
82 TextView valueText = (TextView) g.getChildAt(2);
DemoKitPhone.java 8 import android.widget.TextView;
13 TextView mInputLabel;
14 TextView mOutputLabel;
40 mInputLabel = (TextView) findViewById(R.id.inputLabel);
41 mOutputLabel = (TextView) findViewById(R.id.outputLabel);
  /frameworks/base/core/java/android/widget/
TextSwitcher.java 29 * only children of type {@link android.widget.TextView}.
60 * {@link android.widget.TextView}
64 if (!(child instanceof TextView)) {
66 "TextSwitcher children must be instances of TextView");
79 final TextView t = (TextView) getNextView();
91 ((TextView)getCurrentView()).setText(text);
  /frameworks/base/tests/BiDiTests/res/layout/
grid_layout_ltr.xml 32 <TextView
39 <TextView
45 <TextView
52 <TextView
60 <TextView
66 <TextView
73 <TextView
grid_layout_rtl.xml 32 <TextView
39 <TextView
45 <TextView
52 <TextView
60 <TextView
66 <TextView
73 <TextView
  /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/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/DeskClock/src/com/android/deskclock/widget/
EllipsizeLayout.java 7 import android.widget.TextView;
11 * is a TextView with a non-null android:ellipsize, this layout will reduce
12 * android:maxWidth of that TextView to ensure the other children are within the
31 TextView ellipView = null;
37 if (child instanceof TextView) {
38 final TextView tv = (TextView) child;
  /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/Gallery2/src/com/android/gallery3d/ingest/ui/
DateTileView.java 22 import android.widget.TextView;
49 private TextView mDateTextView;
50 private TextView mMonthTextView;
51 private TextView mYearTextView;
78 mDateTextView = (TextView) findViewById(R.id.date_tile_day);
79 mMonthTextView = (TextView) findViewById(R.id.date_tile_month);
80 mYearTextView = (TextView) findViewById(R.id.date_tile_year);
  /packages/apps/Launcher2/src/com/android/launcher2/
AddAdapter.java 26 import android.widget.TextView;
84 TextView textView = (TextView) convertView;
85 textView.setTag(item);
86 textView.setText(item.text);
87 textView.setCompoundDrawablesWithIntrinsicBounds(item.image, null, null, null);
  /hardware/ti/wpan/tools/FM/FmRxApp/res/layout/
fmrxhelp.xml 19 <TextView android:id="@+id/lblFmRx" android:layout_width="fill_parent"
24 </TextView>
29 <TextView android:id="@+id/lblFmApp" android:layout_width="wrap_content"
33 </TextView>
34 <TextView android:id="@+id/txtplatform"
39 </TextView>
44 <TextView android:id="@+id/lblversion"
48 </TextView>
49 <TextView android:id="@+id/txtversion"
53 </TextView>
    [all...]
  /hardware/ti/wpan/tools/FM/FmTxApp/res/layout/
fmtxhelp.xml 21 <TextView android:id="@+id/lblFmRx" android:layout_width="fill_parent"
26 </TextView>
31 <TextView android:id="@+id/lblFmApp" android:layout_width="wrap_content"
36 </TextView>
37 <TextView android:id="@+id/txtplatform"
42 </TextView>
47 <TextView android:id="@+id/lblversion"
52 </TextView>
53 <TextView android:id="@+id/txtversion"
57 </TextView>
    [all...]
  /cts/tests/res/layout/
textview_capitalize.xml 21 <TextView android:id="@+id/capitalize_default"
26 <TextView android:id="@+id/capitalize_none"
31 <TextView android:id="@+id/capitalize_sentences"
36 <TextView android:id="@+id/capitalize_words"
41 <TextView android:id="@+id/capitalize_characters"
  /cts/tests/src/android/widget/cts/
ViewGroupStubActivity.java 23 import android.widget.TextView;
39 TextView textView = (TextView)findViewById(com.android.cts.stub.R.id.viewgrouptest_stub);
40 textView.setText("test");
  /cts/tests/tests/view/src/android/view/cts/
View_IdsTest.java 28 import android.widget.TextView;
42 TextView symbol = (TextView) activity.findViewById(R.id.symbolball);
43 TextView warning = (TextView) activity.findViewById(R.id.warning);
  /development/apps/Development/src/com/android/development/
LogTextBox.java 19 import android.widget.TextView;
30 * This is a TextView that is Editable and by default scrollable,
37 * {@link android.R.styleable#TextView TextView Attributes},
40 public class LogTextBox extends TextView {
  /development/samples/ApiDemos/src/com/example/android/apis/text/
LogTextBox.java 19 import android.widget.TextView;
27 * This is a TextView that is Editable and by default scrollable,
34 * {@link android.R.styleable#TextView TextView Attributes},
37 public class LogTextBox extends TextView {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
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);
  /frameworks/base/core/java/android/text/method/
ArrowKeyMovementMethod.java 26 import android.widget.TextView;
42 private static int getPageHeight(TextView widget) {
51 protected boolean handleMovementKey(TextView widget, Spannable buffer, int keyCode,
69 protected boolean left(TextView widget, Spannable buffer) {
79 protected boolean right(TextView widget, Spannable buffer) {
89 protected boolean up(TextView widget, Spannable buffer) {
99 protected boolean down(TextView widget, Spannable buffer) {
109 protected boolean pageUp(TextView widget, Spannable buffer) {
133 protected boolean pageDown(TextView widget, Spannable buffer) {
157 protected boolean top(TextView widget, Spannable buffer)
    [all...]

Completed in 461 milliseconds

1 2 3 4 5 6 7 891011>>