HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 126 - 150 of 1057) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Contacts/tests/src/com/android/contacts/format/
SpannedTestUtils.java 23 import android.widget.TextView;
36 * @param textView the text view from which to get the text
38 public static void checkHtmlText(String expectedHtmlText, TextView textView) {
39 String actualHtmlText = Html.toHtml((Spanned) textView.getText());
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
InLineSettingRestore.java 24 import android.widget.TextView;
35 ((TextView) findViewById(R.id.title)).setText(
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiStatusTest.java 42 import android.widget.TextView;
55 private TextView mWifiState;
56 private TextView mNetworkState;
57 private TextView mSupplicantState;
58 private TextView mRSSI;
59 private TextView mBSSID;
60 private TextView mSSID;
61 private TextView mHiddenSSID;
62 private TextView mIPAddr;
63 private TextView mMACAddr
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ViewLayerInvalidationActivity.java 25 import android.widget.TextView;
35 ArrayList<TextView> textViews = new ArrayList<TextView>();
38 TextView nestedStatusTV, invalidateStatusTV;
56 nestedStatusTV = (TextView) findViewById(R.id.nestedStatus);
57 invalidateStatusTV = (TextView) findViewById(R.id.invalidateStatus);
58 final TextView tva = (TextView) findViewById(R.id.textviewa);
84 for (TextView tv : textViews) {
150 if (view instanceof TextView) {
    [all...]
GlyphCacheActivity.java 25 import android.widget.TextView;
54 private TextView createTextView() {
55 TextView textview = new TextView(this); local
56 textview.setTextSize(6 + (int) (Math.random() * 5) * 10);
57 textview.setTextColor(0xff << 24 | (int) (Math.random() * 255) << 16 |
59 textview.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,
63 textview.setText(createString(numChars));
65 return textview;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleExpandableListAdapterTest.java 29 import android.widget.TextView;
169 assertTrue(result instanceof TextView);
170 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
173 assertTrue(result instanceof TextView);
174 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
184 assertTrue(result instanceof TextView);
185 assertEquals("child00", ((TextView) result.findViewById(R.id.text1)).getText().toString());
189 assertEquals("child30", ((TextView) result.findViewById(R.id.text1)).getText().toString());
192 View convertView = new TextView(mContext);
196 assertEquals("child20", ((TextView) result).getText().toString())
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
ReceiveResult.java 30 import android.widget.TextView;
87 // Retrieve the TextView widget that will display results.
88 mResults = (TextView)findViewById(R.id.results);
91 mResults.setText(mResults.getText(), TextView.BufferType.EDITABLE);
151 private TextView mResults;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List5.java 28 import android.widget.TextView;
71 TextView tv;
73 tv = (TextView) LayoutInflater.from(mContext).inflate(
76 tv = (TextView) convertView;
List4.java 28 import android.widget.TextView;
126 mTitle = new TextView(context);
131 mDialogue = new TextView(context);
151 private TextView mTitle;
152 private TextView mDialogue;
TableLayout7.java 28 import android.widget.TextView;
66 TextView label = new TextView(this);
70 TextView shortcut = new TextView(this);
  /frameworks/base/core/java/android/text/style/
EasyEditSpan.java 22 import android.widget.TextView;
27 * The {@link TextView} uses this span to allow the user to delete a chuck of text in one click.
28 * the text. {@link TextView} removes this span as soon as the text is edited, or the cursor moves.
  /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/core/tests/coretests/src/android/widget/listview/
ListTakeFocusFromSide.java 28 import android.widget.TextView;
64 TextView view;
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
69 view = (TextView) convertView;
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
RequestRectangleVisibleWithInternalScroll.java 24 import android.widget.TextView;
33 private TextView mTextBlob;
42 public TextView getTextBlob() {
56 mTextBlob = (TextView) findViewById(R.id.blob);
RequestRectangleVisible.java 26 import android.widget.TextView;
46 final TextView topBlob = (TextView) findViewById(R.id.topBlob);
47 final TextView bottomBlob = (TextView) findViewById(R.id.bottomBlob);
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportListItem.java 26 import android.widget.TextView;
36 private TextView mRecipientView;
37 private TextView mStatusView;
38 private TextView mDeliveryDateView;
49 mRecipientView = (TextView) findViewById(R.id.recipient);
50 mStatusView = (TextView) findViewById(R.id.status);
51 mDeliveryDateView = (TextView) findViewById(R.id.delivery_date);
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
ShortcutPreference.java 26 import android.widget.TextView;
106 TextView shortcutView = (TextView) view.findViewById(R.id.shortcut);
111 TextView titleView = (TextView) view.findViewById(android.R.id.title);
125 TextView summaryView = (TextView) view.findViewById(android.R.id.summary);
  /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/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 27 import android.widget.TextView;
119 TextView displayNameView = (TextView) findViewById(R.id.display_name_text_view);
122 TextView phoneNumberView = (TextView) findViewById(R.id.phone_number_text_view);
  /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/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
Mandelbrot.java 29 import android.widget.TextView;
34 public boolean onBar1Setup(SeekBar b, TextView t) {
45 public boolean onBar2Setup(SeekBar b, TextView t) {
58 public boolean onBar3Setup(SeekBar b, TextView t) {
71 public boolean onBar4Setup(SeekBar b, TextView t) {
  /frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
Mandelbrot.java 24 import android.widget.TextView;
29 public boolean onBar1Setup(SeekBar b, TextView t) {
40 public boolean onBar2Setup(SeekBar b, TextView t) {
53 public boolean onBar3Setup(SeekBar b, TextView t) {
66 public boolean onBar4Setup(SeekBar b, TextView t) {
  /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);

Completed in 681 milliseconds

1 2 3 4 56 7 8 91011>>