/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);
|
/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);
|
/developers/samples/android/connectivity/network/BasicNetworkDemo/BasicNetworkDemo/src/main/java/com/example/android/common/ |
SimpleTextFragment.java | 27 import android.widget.TextView; 30 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create 45 // For situations where the app wants to modify text at Runtime, exposing the TextView. 46 private TextView mTextView; 54 // Before initializing the textView, check if any arguments were provided via setArguments. 57 // Create a new TextView and set its text to whatever was provided. 58 mTextView = new TextView(getActivity()); 68 public TextView getTextView() { 73 * Changes the text for this TextView, according to the resource ID provided. 74 * @param stringId A resource ID representing the text content for this Fragment's TextView [all...] |
/developers/samples/android/connectivity/network/NetworkConnect/NetworkConnect/src/main/java/com/example/android/common/ |
SimpleTextFragment.java | 27 import android.widget.TextView; 30 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create 45 // For situations where the app wants to modify text at Runtime, exposing the TextView. 46 private TextView mTextView; 54 // Before initializing the textView, check if any arguments were provided via setArguments. 57 // Create a new TextView and set its text to whatever was provided. 58 mTextView = new TextView(getActivity()); 68 public TextView getTextView() { 73 * Changes the text for this TextView, according to the resource ID provided. 74 * @param stringId A resource ID representing the text content for this Fragment's TextView [all...] |
/developers/samples/android/content/multiuser/AppRestrictions/AppRestrictions/src/main/res/layout/ |
main.xml | 24 <TextView android:layout_width="match_parent" 38 <TextView android:layout_width="wrap_content" 53 <TextView android:layout_width="wrap_content" 57 <TextView android:layout_width="wrap_content" 67 <TextView android:layout_width="210dp" 73 <TextView android:id="@+id/boolean_entry_id" 84 <TextView android:layout_width="210dp" 90 <TextView android:id="@+id/choice_entry_id" 101 <TextView android:layout_width="210dp" 107 <TextView android:id="@+id/multi_entry_id [all...] |
/developers/samples/android/input/gestures/BasicGestureDetect/BasicGestureDetect/src/main/java/com/example/android/common/widgets/ |
SimpleTextFragment.java | 26 import android.widget.TextView; 29 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create 44 // For situations where the app wants to modify text at Runtime, exposing the TextView. 45 private TextView mTextView; 53 // Before initializing the textView, check if any arguments were provided via setArguments. 56 // Create a new TextView and set its text to whatever was provided. 57 mTextView = new TextView(getActivity()); 67 public TextView getTextView() { 72 * Changes the text for this TextView, according to the resource ID provided. 73 * @param stringId A resource ID representing the text content for this Fragment's TextView [all...] |
/developers/samples/android/security/keystore/BasicAndroidKeyStore/BasicAndroidKeyStore/src/main/java/com/example/android/common/ |
SimpleTextFragment.java | 26 import android.widget.TextView; 29 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create 44 // For situations where the app wants to modify text at Runtime, exposing the TextView. 45 private TextView mTextView; 53 // Before initializing the textView, check if any arguments were provided via setArguments. 56 // Create a new TextView and set its text to whatever was provided. 57 mTextView = new TextView(getActivity()); 66 public TextView getTextView() { 71 * Changes the text for this TextView, according to the resource ID provided. 73 * @param stringId A resource ID representing the text content for this Fragment's TextView [all...] |
/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 {
|