HomeSort by relevance Sort by last modified time
    Searched full:textview (Results 1 - 25 of 6272) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/v1/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;
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
ShadowOverlayContainerTest.java 23 import android.widget.TextView;
30 TextView textView = new TextView(getContext());
31 textView.setLayoutParams(new FrameLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
33 textView.setText("abc");
36 container.wrap(textView);
41 assertTrue(textView.getWidth() > 0);
42 assertTrue(textView.getWidth() < 500);
43 assertTrue(textView.getHeight() > 0)
    [all...]
  /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...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
FindMethodTest.java 22 import android.widget.TextView;
32 TextView textView = mBinder.textView6;
33 assertEquals("no arg", textView.getText().toString());
37 TextView textView = mBinder.textView0;
38 assertEquals("1", textView.getText().toString());
42 TextView textView = mBinder.textView1;
43 assertEquals("1.25", textView.getText().toString())
    [all...]
  /frameworks/support/compat/java/android/support/v4/widget/
TextViewCompat.java 25 import android.widget.TextView;
28 * Helper for accessing features in {@link TextView} introduced after API level
37 void setCompoundDrawablesRelative(@NonNull TextView textView,
40 void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView,
43 void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView,
46 int getMaxLines(TextView textView);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewActivityTest.java 61 * Tests the TextView widget from an Activity
78 onView(withId(R.id.textview)).perform(click());
79 onView(withId(R.id.textview)).perform(typeTextIntoFocusedView(helloWorld));
81 onView(withId(R.id.textview)).check(matches(withText(helloWorld)));
87 onView(withId(R.id.textview)).perform(click());
88 onView(withId(R.id.textview)).perform(typeTextIntoFocusedView(helloWorld));
89 onView(withId(R.id.textview)).perform(clickOnTextAtIndex(helloWorld.indexOf("world")));
92 onView(withId(R.id.textview)).perform(pressKey(KeyEvent.KEYCODE_FORWARD_DEL));
93 onView(withId(R.id.textview)).check(matches(withText("Hello orld!")));
101 onView(withId(R.id.textview)).perform(click())
    [all...]
  /frameworks/support/compat/tests/java/android/support/v4/testutils/
TextViewActions.java 28 import android.widget.TextView;
35 * Sets max lines count on <code>TextView</code>.
41 return isAssignableFrom(TextView.class);
46 return "TextView set max lines";
53 TextView textView = (TextView) view;
54 textView.setMaxLines(maxLines);
62 * Sets min lines count on <code>TextView</code>.
68 return isAssignableFrom(TextView.class)
    [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.
  /frameworks/support/compat/jellybean-mr1/android/support/v4/widget/
TextViewCompatJbMr1.java 23 import android.widget.TextView;
27 public static void setCompoundDrawablesRelative(@NonNull TextView textView,
30 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
31 textView.setCompoundDrawables(rtl ? end : start, top, rtl ? start : end, bottom);
34 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView,
37 boolean rtl = textView.getLayoutDirection() == View.LAYOUT_DIRECTION_RTL;
38 textView.setCompoundDrawablesWithIntrinsicBounds(rtl ? end : start, top, rtl ? start : end,
42 public static void setCompoundDrawablesRelativeWithIntrinsicBounds(@NonNull TextView textView
    [all...]

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>