/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completion1-expected-applyCompletion11a.diff | 1 Code completion in completion1.xml for ^<TextView selecting <RadioGroup ></RadioGroup>: 3 - ^<TextView 4 + <RadioGroup ^></RadioGroup><TextView
|
completion1-expected-applyCompletion11b.diff | 1 Code completion in completion1.xml for ^<TextView selecting <CheckBox />: 3 - ^<TextView 4 + <CheckBox ^/><TextView
|
completion2-expected-applyCompletion13a.diff | 3 - <TextView android:gravity="left|bottom|^cen"></TextView> 4 + <TextView android:gravity="left|bottom|fill_vertical^"></TextView>
|
completion2-expected-applyCompletion13b.diff | 3 - <TextView android:gravity="left|bottom|cen^"></TextView> 4 + <TextView android:gravity="left|bottom|center_horizontal^"></TextView>
|
completion2-expected-applyCompletion13c.diff | 3 - <TextView android:gravity="left|bottom^|cen"></TextView> 4 + <TextView android:gravity="left|bottom|fill_horizontal^"></TextView>
|
unwrap.info | 3 android.widget.TextView [0,0,1280,17] <TextView>
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ViewInnerTextTest.java | 7 import android.widget.TextView; 28 top.addView(textView("blah")); 30 top.addView(textView("a b c")); 35 innerLayout.addView(textView("d e f")); 36 innerLayout.addView(textView("g h i")); 37 innerLayout.addView(textView("")); 38 innerLayout.addView(textView(null)); 39 innerLayout.addView(textView("jkl!")); 41 top.addView(textView("mnop")); 49 top.addView(textView("blah", View.VISIBLE)) [all...] |
TextViewTest.java | 13 import android.widget.TextView; 40 private TextView textView; 44 textView = new TextView(new Activity()); 49 TextView textView = new TextView(null); 51 textView.setOnEditorActionListener(actionListener); 53 shadowOf(textView).triggerEditorAction(EditorInfo.IME_ACTION_GO) [all...] |
CountingAdapter.java | 6 import android.widget.TextView; 37 TextView textView = new TextView(null); 38 textView.setText("Item " + position); 39 return textView;
|
/sdk/apps/DeviceConfig/res/layout/ |
main.xml | 35 <TextView 40 </TextView> 42 <TextView 47 </TextView> 49 <TextView 53 </TextView> 60 <TextView 64 </TextView> 66 <TextView 70 </TextView> [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/refactoring/usecompound/ |
compound1.info | 4 android.widget.TextView [0,72,109,97] <TextView>
|
compound2.info | 3 android.widget.TextView [0,0,109,25] <TextView>
|
compound3.info | 4 android.widget.TextView [72,23,181,48] <TextView>
|
compound4.info | 3 android.widget.TextView [0,23,109,48] <TextView>
|
compound5.info | 2 android.widget.TextView [0,0,107,26] <TextView>
|
compound6.info | 4 android.widget.TextView [0,72,109,97] <TextView>
|
compound7.info | 4 android.widget.TextView [0,72,109,97] <TextView>
|
compound_all.info | 4 android.widget.TextView [0,72,109,97] <TextView> 6 android.widget.TextView [0,0,109,25] <TextView> 10 android.widget.TextView [72,23,181,48] <TextView> 12 android.widget.TextView [0,23,109,48] <TextView>
|
/development/samples/ApiDemos/assets/ |
read_asset.txt | 3 It was read and placed into the TextView here.
|
/external/robolectric/src/test/resources/res/layout/ |
custom_layout2.xml | 5 <TextView/> 6 <TextView/> 7 <TextView/>
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
AutoCompleteTextViewPopup.java | 47 final AutoCompleteTextView textView = theActivity.getTextView(); 51 textView.requestFocus(); 56 waitAssertListSelection(textView, ListView.INVALID_POSITION); 61 textView.setListSelection(0); 65 waitAssertListSelection("set selection to (0)", textView, 0); 69 waitAssertListSelection("move selection to (1)", textView, 1); 72 clearText(textView); 79 final AutoCompleteTextView textView = theActivity.getTextView(); 83 textView.requestFocus(); 88 waitAssertListSelection(textView, ListView.INVALID_POSITION) [all...] |
/sdk/testapps/buildConfigTest/app/src/com/android/tests/buildconfigtest/ |
Main.java | 5 import android.widget.TextView; 19 TextView tv = (TextView) findViewById(R.id.app); 23 TextView tv = (TextView) findViewById(R.id.lib1);
|
/packages/apps/Dialer/src/com/android/dialer/ |
PhoneCallDetailsViews.java | 21 import android.widget.TextView; 29 public final TextView nameView; 32 public final TextView callTypeAndDate; 33 public final TextView numberView; 34 public final TextView labelView; 36 private PhoneCallDetailsViews(TextView nameView, View callTypeView, 37 CallTypeIconsView callTypeIcons, TextView callTypeAndDate, TextView numberView, 38 TextView labelView) { 55 return new PhoneCallDetailsViews((TextView) view.findViewById(R.id.name) [all...] |
/cts/tests/src/android/app/cts/ |
MockApplicationActivity.java | 21 import android.widget.TextView; 28 TextView textView = new TextView(this); 29 textView.setText("Test"); 30 setContentView(textView);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
TextView_SaveStateTest.java | 24 import android.widget.TextView; 27 * Test {@link TextView.SavedState}. 32 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source); 37 state = TextView.SavedState.CREATOR.createFromParcel(source); 44 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source); 64 TextView textView = new TextView(getInstrumentation().getTargetContext()) [all...] |