/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);
|
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);
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
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/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...] |
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
EffectParameter.java | 21 import android.widget.TextView; 33 protected TextView mValueText; 35 public EffectParameter (int min, int max, SeekBar seekBar, TextView textView, String unit) { 39 mValueText = textView;
|
VirtualizerTest.java | 30 import android.widget.TextView; 69 TextView textView; 85 textView = (TextView)findViewById(R.id.virtStrengthMin); 86 textView.setText("0"); 87 textView = (TextView)findViewById(R.id.virtStrengthMax); 88 textView.setText("1000"); 90 textView = (TextView)findViewById(R.id.virtStrengthValue) [all...] |
/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/Calculator/src/com/android/calculator2/ |
HistoryAdapter.java | 24 import android.widget.TextView; 70 TextView expr = (TextView) view.findViewById(R.id.historyExpr); 71 TextView result = (TextView) view.findViewById(R.id.historyResult);
|
/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);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/refactoring/usecompound/ |
compound_all-expected-5.xml | 19 <TextView 25 <TextView 33 </TextView> 48 <TextView 62 <TextView
|
compound_all-expected-6.xml | 19 <TextView 33 <TextView 45 <TextView 53 </TextView> 63 <TextView
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/res/ |
ViewLoaderTest.java | 70 TextView textView = (TextView) view.findViewById(android.R.id.text1); 71 assertThat(textView.getText().toString(), equalTo("default")); 78 TextView textView = (TextView) view.findViewById(android.R.id.text1); 79 assertThat(textView.getText().toString(), equalTo("xlarge")); 86 TextView textView = (TextView) view.findViewById(android.R.id.text1) [all...] |
ResourceLoaderTest.java | 6 import android.widget.TextView; 72 TextView textView = (TextView) view.findViewById(android.R.id.text1); 73 assertThat(textView.getText().toString(), equalTo("land")); 90 TextView textView = (TextView) view.findViewById(android.R.id.text1); 91 assertThat(textView.getText().toString(), equalTo("default"));
|
/development/apps/Development/res/layout/ |
permission_details.xml | 31 <TextView android:id="@+id/perm_name_label" 36 <TextView android:id="@+id/perm_name" 45 <TextView android:id="@+id/perm_desc_label" 50 <TextView android:id="@+id/perm_desc" 59 <TextView android:id="@+id/perm_group_label" 64 <TextView android:id="@+id/perm_group" 73 <TextView android:id="@+id/perm_protection_label" 78 <TextView android:id="@+id/perm_protection" 87 <TextView android:id="@+id/perm_source_label" 92 <TextView android:id="@+id/perm_source [all...] |
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
ObjectViewer.java | 35 import android.widget.TextView; 119 TextView view = (TextView)findViewById(R.id.name); 122 view = (TextView)findViewById(R.id.format); 124 view = (TextView)findViewById(R.id.size); 126 view = (TextView)findViewById(R.id.thumb_width); 128 view = (TextView)findViewById(R.id.thumb_height); 130 view = (TextView)findViewById(R.id.thumb_size); 132 view = (TextView)findViewById(R.id.width); 134 view = (TextView)findViewById(R.id.height) [all...] |
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/ |
IntegrationTestUtils.java | 29 import android.widget.TextView; 75 /** Returns the result of running {@link TextView#getText()} on the ui thread. */ 76 public CharSequence getText(final TextView view) throws Throwable { 138 * Gets all {@link TextView} objects whose {@link TextView#getText()} contains the given text as 141 public List<TextView> getTextViewsWithString(final Activity activity, final String text) 143 return runOnUiThreadAndGetTheResult(new Callable<List<TextView>>() { 145 public List<TextView> call() throws Exception { 146 List<TextView> matchingViews = new ArrayList<TextView>(); [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
SimpleAdapterTest.java | 31 import android.widget.TextView; 147 assertTrue(result instanceof TextView); 148 assertEquals("01", ((TextView) result).getText().toString()); 151 assertTrue(result instanceof TextView); 152 assertEquals("191", ((TextView) result).getText().toString()); 156 TextView convertView = (TextView) result; 158 assertEquals("01", ((TextView) result).getText().toString()); 163 assertEquals("101", ((TextView) result).getText().toString()); 178 assertEquals("01", ((TextView) result).getText().toString()) [all...] |
/frameworks/base/core/res/res/layout/ |
ssl_certificate.xml | 50 <TextView 62 <TextView 70 <TextView 79 <TextView 87 <TextView 96 <TextView 104 <TextView 113 <TextView 121 <TextView 130 <TextView [all...] |
/development/apps/Development/src/com/android/development/ |
PackageSummary.java | 39 import android.widget.TextView; 44 private TextView mPackage; 46 private TextView mClass; 47 private TextView mLabel; 54 private TextView mTask; 55 private TextView mVersion; 56 private TextView mProcess; 57 private TextView mUid; 58 private TextView mSource; 59 private TextView mData [all...] |
/frameworks/base/docs/html/guide/topics/ui/layout/ |
grid.jd | 16 <li>{@link android.widget.TextView}</li> 33 composed of a variety of View objects, like ImageView or TextView objects. 48 <TextView 51 <TextView 58 <TextView 61 <TextView 90 <TextView 94 <TextView 101 <TextView 105 <TextView [all...] |
/frameworks/base/tests/BiDiTests/res/layout/ |
textview_alignment_ltr.xml | 28 <TextView android:text="(unspecified)" 35 <TextView android:layout_height="wrap_content" 43 <TextView android:layout_height="wrap_content" 54 <TextView android:text="gravity (default)" 61 <TextView android:layout_height="wrap_content" 70 <TextView android:layout_height="wrap_content" 82 <TextView android:text="gravity left" 89 <TextView android:layout_height="wrap_content" 99 <TextView android:layout_height="wrap_content" 112 <TextView android:text="gravity right [all...] |
textview_alignment_rtl.xml | 28 <TextView android:text="(unspecified)" 35 <TextView android:layout_height="wrap_content" 43 <TextView android:layout_height="wrap_content" 54 <TextView android:text="gravity (default)" 61 <TextView android:layout_height="wrap_content" 70 <TextView android:layout_height="wrap_content" 82 <TextView android:text="gravity left" 89 <TextView android:layout_height="wrap_content" 99 <TextView android:layout_height="wrap_content" 112 <TextView android:text="gravity right [all...] |
/development/samples/ApiDemos/res/layout/ |
secure_view.xml | 26 <TextView 32 <TextView 39 <TextView 51 <TextView 58 <TextView 71 <TextView 78 <TextView 92 <TextView 99 <TextView
|