HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 426 - 450 of 864) sorted by null

<<11121314151617181920>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/
NdefPushReceiverActivity.java 32 import android.widget.TextView;
57 TextView text = (TextView) findViewById(R.id.text);
  /cts/tests/tests/text/src/android/text/method/cts/
DateTimeKeyListenerTest.java 33 import android.widget.TextView;
43 private TextView mTextView;
55 mTextView = (TextView) mActivity.findViewById(R.id.keylistener_textview);
109 * 1. Press '1' key and check if the content of TextView becomes "1"
110 * 2. Press '2' key and check if the content of TextView becomes "12"
TimeKeyListenerTest.java 32 import android.widget.TextView;
39 private TextView mTextView;
51 mTextView = (TextView) mActivity.findViewById(R.id.keylistener_textview);
102 * 1. Press '1' key and check if the content of TextView becomes "1"
103 * 2. Press '2' key and check if the content of TextView becomes "12"
  /cts/tests/tests/text/src/android/text/style/cts/
URLSpanTest.java 33 import android.widget.TextView;
99 final TextView textView = (TextView) mActivity.findViewById(R.id.url);
108 urlSpan.onClick(textView);
  /development/apps/Development/src/com/android/development/
AppHwConfigList.java 33 import android.widget.TextView;
135 TextView text = (TextView)view.findViewById(android.R.id.text1);
InstrumentationList.java 36 import android.widget.TextView;
97 TextView text = (TextView)view.findViewById(android.R.id.text1);
RunningProcesses.java 31 import android.widget.TextView;
126 TextView text = (TextView)view.findViewById(android.R.id.text1);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentDialog.java 31 import android.widget.TextView;
42 ((TextView)tv).setText("Example of displaying dialogs with a DialogFragment. "
152 ((TextView)tv).setText("Dialog #" + mNum + ": using style "
FragmentLayout.java 36 import android.widget.TextView;
210 TextView text = new TextView(getActivity());
MenuInflateFromXml.java 29 import android.widget.TextView;
65 private TextView mInstructionsText;
97 mInstructionsText = new TextView(this);
MessengerServiceActivities.java 20 import android.widget.TextView;
39 TextView mCallbackText;
162 mCallbackText = (TextView)findViewById(R.id.callback);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DateWidgets1.java 26 import android.widget.TextView;
45 private TextView mDateDisplay;
63 mDateDisplay = (TextView) findViewById(R.id.dateDisplay);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader2.java 28 import android.widget.TextView;
141 // Our private ArrayAdapter implementation that returns a bold TextView for
142 // RSS items that are unread, or a normal TextView for items that have been read.
152 TextView view = null;
154 // Create a TextView wrapper, and change the typeface, if necessary.
158 view = new TextView(parent.getContext());
MyRssReader3.java 29 import android.widget.TextView;
150 // Our private ArrayAdapter implementation that returns a bold TextView for
151 // RSS items that are unread, or a normal TextView for items that have been read.
162 // Create a TextView wrapper, and change the typeface, if necessary.
164 TextView view = new TextView(parent.getContext());
MyRssReader4.java 28 import android.widget.TextView;
170 // Our private ArrayAdapter implementation that returns a bold TextView for
171 // RSS items that are unread, or a normal TextView for items that have been read.
180 TextView view = (TextView)super.getView(position, convertView, parent);
  /development/samples/NFCDemo/src/com/example/android/nfc/record/
UriRecord.java 24 import android.widget.TextView;
97 TextView text = (TextView) inflater.inflate(R.layout.tag_text, parent, false);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
SearchableDictionary.java 36 import android.widget.TextView;
46 private TextView mTextView;
54 mTextView = (TextView) findViewById(R.id.text);
  /development/samples/Spinner/src/com/android/example/spinner/
SpinnerActivity.java 29 import android.widget.TextView;
197 TextView resultText = (TextView)findViewById(R.id.SpinnerResult);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
FragmentDialogSupport.java 32 import android.widget.TextView;
43 ((TextView)tv).setText("Example of displaying dialogs with a DialogFragment. "
152 ((TextView)tv).setText("Dialog #" + mNum + ": using style "
FragmentLayoutSupport.java 37 import android.widget.TextView;
213 TextView text = new TextView(getActivity());
  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
LocalServiceBroadcaster.java 36 import android.widget.TextView;
57 final TextView callbackData = (TextView)findViewById(R.id.callback);
  /development/samples/training/ads-and-ux/src/com/example/training/ads/
AdsCatalogActivity.java 29 import android.widget.TextView;
86 private TextView mAdStatus;
120 mAdStatus = (TextView) v.findViewById(R.id.status);
  /frameworks/base/core/java/android/preference/
TwoStatePreference.java 28 import android.widget.TextView;
209 TextView summaryView = (TextView) view.findViewById(com.android.internal.R.id.summary);
  /frameworks/base/core/java/android/text/method/
BaseKeyListener.java 23 import android.widget.TextView;
38 * a {@link TextView}. If there is a selection, deletes the selection; otherwise,
50 * key in a {@link TextView}. If there is a selection, deletes the selection; otherwise,
112 if (view instanceof TextView) {
113 final Layout layout = ((TextView) view).getLayout();
  /frameworks/base/core/java/android/widget/
SimpleCursorAdapter.java 34 * returned value is false and the view to bind is a TextView,
35 * {@link #setViewText(TextView, String)} is invoked. If the returned value
119 * returned value is false and the view to bind is a TextView,
120 * {@link #setViewText(TextView, String)} is invoked. If the returned value is
132 * @see #setViewText(TextView, String)
155 if (v instanceof TextView) {
156 setViewText((TextView) v, text);
217 * Called by bindView() to set the text for a TextView but only if
219 * handle binding to an TextView.
224 * @param v TextView to receive tex
    [all...]

Completed in 1654 milliseconds

<<11121314151617181920>>