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

<<21222324252627282930>>

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
GpsTestActivity.java 33 import android.widget.TextView;
46 private TextView mTextView;
62 mTextView = (TextView) findViewById(R.id.text);
  /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 29 import android.widget.TextView;
38 private TextView mTextView;
50 mTextView = (TextView) mActivity.findViewById(R.id.keylistener_textview);
83 * 1. Press '1' key and check if the content of TextView becomes "1"
84 * 2. Press '2' key and check if the content of TextView becomes "12"
TimeKeyListenerTest.java 29 import android.widget.TextView;
35 private TextView mTextView;
47 mTextView = (TextView) mActivity.findViewById(R.id.keylistener_textview);
78 * 1. Press '1' key and check if the content of TextView becomes "1"
79 * 2. Press '2' key and check if the content of TextView becomes "12"
  /development/apps/Development/src/com/android/development/
AppHwConfigList.java 33 import android.widget.TextView;
135 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;
214 TextView text = new TextView(getActivity());
IsolatedService.java 34 import android.widget.TextView;
109 final TextView mStatus;
123 mStatus = (TextView)mActivity.findViewById(status);
MenuInflateFromXml.java 31 import android.widget.TextView;
67 private TextView mInstructionsText;
108 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/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/SpellChecker/HelloSpellChecker/src/com/example/android/hellospellchecker/
HelloSpellCheckerActivity.java 30 import android.widget.TextView;
36 private TextView mMainView;
44 mMainView = (TextView)findViewById(R.id.main);
  /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;
217 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;
215 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;
42 * a {@link TextView}. If there is a selection, deletes the selection; otherwise,
54 * key in a {@link TextView}. If there is a selection, deletes the selection; otherwise,
116 if (view instanceof TextView) {
117 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 a TextView.
224 * @param v TextView to receive tex
    [all...]

Completed in 1561 milliseconds

<<21222324252627282930>>