HomeSort by relevance Sort by last modified time
    Searched full:textview (Results 101 - 125 of 3234) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 92 import android.widget.TextView;
93 import android.widget.TextView.BufferType;
94 import android.widget.TextView.OnEditorActionListener;
99 * Test {@link TextView}.
103 private TextView mTextView;
132 new TextView(mActivity);
134 new TextView(mActivity, null);
136 new TextView(mActivity, null, 0);
141 TextView tv = findTextView(R.id.textview_text);
152 mTextView = new TextView(mActivity)
    [all...]
CursorAdapterTest.java 36 import android.widget.TextView;
182 TextView textView = new TextView(mContext);
183 textView.setText("getView test");
189 cursorAdapter.getView(0, textView, mParent);
196 cursorAdapter.getView(100, textView, mParent);
202 TextView retView = (TextView) cursorAdapter.getView(0, null, mParent);
207 retView = (TextView) cursorAdapter.getView(1, textView, mParent)
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
CustomBar.java 45 import android.widget.TextView;
61 protected abstract TextView getStyleableTextView();
204 protected TextView setText(int index, String stringReference) {
206 if (child instanceof TextView) {
207 TextView textView = (TextView) child;
208 setText(textView, stringReference);
209 return textView;
215 protected TextView setTextById(int id, String stringReference)
    [all...]
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
EqualizerTest.java 30 import android.widget.TextView;
71 TextView textView;
100 textView = (TextView)findViewById(R.id.eqParam1Value);
101 mParameters[0] = new BandLevelParam(mEqualizer, 0, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
111 textView = (TextView)findViewById(R.id.eqParam2Value);
112 mParameters[1] = new BandLevelParam(mEqualizer, 1, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
122 textView = (TextView)findViewById(R.id.eqParam3Value)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 31 import android.widget.TextView;
65 String title = ((TextView) info.targetView).getText().toString();
111 public TextView getGenericView() {
116 TextView textView = new TextView(ExpandableList1.this);
117 textView.setLayoutParams(lp);
119 textView.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);
121 textView.setPaddingRelative(36, 0, 0, 0);
123 textView.setTextAlignment(View.TEXT_ALIGNMENT_VIEW_START)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
BatteryInfo.java 32 import android.widget.TextView;
37 private TextView mStatus;
38 private TextView mPower;
39 private TextView mLevel;
40 private TextView mScale;
41 private TextView mHealth;
42 private TextView mVoltage;
43 private TextView mTemperature;
44 private TextView mTechnology;
45 private TextView mUptime
    [all...]
  /cts/tests/res/layout/
textview_ems.xml 21 <TextView android:id="@+id/ems_default"
26 <TextView android:id="@+id/ems_huge"
33 <TextView android:id="@+id/ems_tiny"
40 <TextView android:id="@+id/ems_zero"
47 <TextView android:id="@+id/minEms_tiny"
53 <TextView android:id="@+id/minEms_huge"
59 <TextView android:id="@+id/minEms_zero"
65 <TextView android:id="@+id/maxEms_tiny"
71 <TextView android:id="@+id/maxEms_huge"
77 <TextView android:id="@+id/maxEms_zero
    [all...]
textview_gravity.xml 21 <TextView android:id="@+id/gravity_default"
25 <TextView android:id="@+id/gravity_bottom"
30 <TextView android:id="@+id/gravity_right"
35 <TextView android:id="@+id/gravity_fill"
40 <TextView android:id="@+id/gravity_center"
45 <TextView android:id="@+id/gravity_center_vertical_right"
inflater_layout.xml 21 <TextView android:id="@+id/numeric_default"
26 <TextView android:id="@+id/numeric_integer"
31 <TextView android:id="@+id/numeric_signed"
36 <TextView android:id="@+id/numeric_decimal"
41 <TextView android:id="@+id/numeric_signed_integer"
46 <TextView android:id="@+id/numeric_integer_decimal"
51 <TextView android:id="@+id/numeric_signed_decimal"
56 <TextView android:id="@+id/numeric_signed_decimal_integer"
textview_numeric.xml 21 <TextView android:id="@+id/numeric_default"
26 <TextView android:id="@+id/numeric_integer"
31 <TextView android:id="@+id/numeric_signed"
36 <TextView android:id="@+id/numeric_decimal"
41 <TextView android:id="@+id/numeric_signed_integer"
46 <TextView android:id="@+id/numeric_integer_decimal"
51 <TextView android:id="@+id/numeric_signed_decimal"
56 <TextView android:id="@+id/numeric_signed_decimal_integer"
  /cts/tests/src/android/app/cts/
ActivityManagerStubFooActivity.java 21 import android.widget.TextView;
28 final TextView tv = new TextView(this);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/matchers/
TextViewHasTextMatcher.java 3 import android.widget.TextView;
9 public class TextViewHasTextMatcher<T extends TextView> extends TypeSafeMatcher<T> {
39 public static <T extends TextView> Matcher<T> hasText(String expectedTextViewText) {
  /external/robolectric/src/test/resources/res/layout/
text_views.xml 9 <TextView
17 <TextView
25 <TextView
text_views_hints.xml 8 <TextView
16 <TextView
24 <TextView
  /sdk/testapps/libsTest/app/src/com/android/tests/libstest/app/
App.java 4 import android.widget.TextView;
14 TextView tv = (TextView) a.findViewById(R.id.app_text2);
  /sdk/testapps/libsTest/lib1/src/com/android/tests/libstest/lib1/
Lib1.java 4 import android.widget.TextView;
14 TextView tv = (TextView) a.findViewById(R.id.lib1_text2);
  /sdk/testapps/libsTest/lib2/src/com/android/tests/libstest/lib2/
Lib2.java 4 import android.widget.TextView;
14 TextView tv = (TextView) a.findViewById(R.id.lib2_text2);
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityEndToEndActivity.java 28 import android.widget.TextView;
43 TextView textView = (TextView) View
45 textView.setText((String) getItem(position));
46 return textView;
  /frameworks/base/core/tests/coretests/res/layout/
layout_six.xml 21 <TextView android:id="@+id/text" android:text="@string/layout_six_text_text" android:layout_width="match_parent" android:layout_height="wrap_content" />
22 <TextView android:id="@+id/text" android:text="@string/layout_six_text_text" android:layout_width="match_parent" android:layout_height="wrap_content" />
23 <TextView android:id="@+id/text" android:text="@string/layout_six_text_text" android:layout_width="match_parent" android:layout_height="wrap_content" />
24 <TextView android:id="@+id/text" android:text="@string/layout_six_text_text" android:layout_width="match_parent" android:layout_height="wrap_content" />
25 <TextView android:id="@+id/text" android:text="@string/layout_six_text_text" android:layout_width="match_parent" android:layout_height="wrap_content" />
26 <TextView android:id="@+id/text" android:text="@string/layout_six_text_text" android:layout_width="match_parent" android:layout_height="wrap_content" />
  /frameworks/base/core/tests/coretests/res/raw/
medium.xml 21 <TextView id="@+id/text" android:text="S" android:layout_width="match_parent" android:layout_height="wrap_content" />
22 <TextView id="@+id/text" android:text="M" android:layout_width="match_parent" android:layout_height="wrap_content" />
23 <TextView id="@+id/text" android:text="T" android:layout_width="match_parent" android:layout_height="wrap_content" />
24 <TextView id="@+id/text" android:text="W" android:layout_width="match_parent" android:layout_height="wrap_content" />
25 <TextView id="@+id/text" android:text="H" android:layout_width="match_parent" android:layout_height="wrap_content" />
26 <TextView id="@+id/text" android:text="F" android:layout_width="match_parent" android:layout_height="wrap_content" />
  /frameworks/base/tests/BiDiTests/res/layout/
textview_direction_ltr.xml 29 <TextView android:text="(unspecified)"
36 <TextView android:layout_height="wrap_content"
44 <TextView android:layout_height="wrap_content"
52 <TextView android:layout_height="wrap_content"
63 <TextView android:text="inherit"
70 <TextView android:layout_height="wrap_content"
79 <TextView android:layout_height="wrap_content"
88 <TextView android:layout_height="wrap_content"
100 <TextView android:text="firstStrong"
107 <TextView android:layout_height="wrap_content
    [all...]
textview_direction_rtl.xml 29 <TextView android:text="(unspecified)"
36 <TextView android:layout_height="wrap_content"
44 <TextView android:layout_height="wrap_content"
52 <TextView android:layout_height="wrap_content"
63 <TextView android:text="inherit"
70 <TextView android:layout_height="wrap_content"
79 <TextView android:layout_height="wrap_content"
88 <TextView android:layout_height="wrap_content"
100 <TextView android:text="firstStrong"
107 <TextView android:layout_height="wrap_content
    [all...]
  /development/samples/ApiDemos/res/layout-sw480dp/
resources_smallest_width_row.xml 22 <TextView android:layout_width="0px" android:layout_height="match_parent"
26 </TextView>
27 <TextView android:layout_width="0px" android:layout_height="match_parent"
31 </TextView>
32 <TextView android:layout_width="0px" android:layout_height="match_parent"
36 </TextView>
37 <TextView android:layout_width="0px" android:layout_height="match_parent"
41 </TextView>
  /development/samples/Support4Demos/res/layout/
accessibility_manager.xml 11 <TextView
16 <TextView
  /development/samples/WiFiDirectServiceDiscovery/res/layout/
main.xml 15 <TextView
20 </TextView>

Completed in 1079 milliseconds

1 2 3 45 6 7 8 91011>>