HomeSort by relevance Sort by last modified time
    Searched refs:TextView (Results 551 - 575 of 1355) sorted by null

<<21222324252627282930>>

  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
AutoCompleteTextViewActivityPortrait.java 28 import android.widget.TextView;
48 AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.edit);
49 textView.setAdapter(adapter);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Fisheye.java 24 import android.widget.TextView;
42 public boolean onBar1Setup(SeekBar b, TextView t) {
48 public boolean onBar2Setup(SeekBar b, TextView t) {
54 public boolean onBar3Setup(SeekBar b, TextView t) {
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Fisheye.java 21 import android.widget.TextView;
39 public boolean onBar1Setup(SeekBar b, TextView t) {
45 public boolean onBar2Setup(SeekBar b, TextView t) {
51 public boolean onBar3Setup(SeekBar b, TextView t) {
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Fisheye.java 24 import android.widget.TextView;
42 public boolean onBar1Setup(SeekBar b, TextView t) {
48 public boolean onBar2Setup(SeekBar b, TextView t) {
54 public boolean onBar3Setup(SeekBar b, TextView t) {
  /frameworks/support/v4/java/android/support/v4/widget/
SimpleCursorAdapter.java 24 import android.widget.TextView;
104 * returned value is false and the view to bind is a TextView,
105 * {@link #setViewText(TextView, String)} is invoked. If the returned value is
117 * @see #setViewText(TextView, String)
140 if (v instanceof TextView) {
141 setViewText((TextView) v, text);
202 * Called by bindView() to set the text for a TextView but only if
204 * handle binding to an TextView.
209 * @param v TextView to receive text
210 * @param text the text to be set for the TextView
    [all...]
  /packages/apps/Settings/src/com/android/settings/
Display.java 32 import android.widget.TextView;
55 mPreview = (TextView) findViewById(R.id.preview);
64 obtainStyledAttributes(android.R.styleable.TextView);
134 private TextView mPreview;
DeviceAdminAdd.java 49 import android.widget.TextView;
72 TextView mAdminName;
73 TextView mAdminDescription;
74 TextView mAddMsg;
77 TextView mAdminWarning;
194 mAdminName = (TextView)findViewById(R.id.admin_name);
195 mAdminDescription = (TextView)findViewById(R.id.admin_description);
197 mAddMsg = (TextView)findViewById(R.id.add_msg);
208 mAdminWarning = (TextView) findViewById(R.id.admin_warning);
363 TextView tv = (TextView) v
    [all...]
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryHistoryPreference.java 25 import android.widget.TextView;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
NestedFolderTeaserView.java 35 import android.widget.TextView;
89 private TextView mShowMoreFoldersTextView;
90 private TextView mShowMoreFoldersCountTextView;
123 private final TextView mSendersTextView;
124 private final TextView mCountTextView;
128 public FolderHolder(final View itemView, final TextView sendersTextView,
129 final TextView countTextView) {
143 public TextView getSendersTextView() {
147 public TextView getCountTextView() {
209 mShowMoreFoldersTextView = (TextView) findViewById(R.id.show_more_folders_textView)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TabHostTest.java 30 import android.widget.TextView;
251 TextView textView = (TextView) tabHost.getCurrentView();
252 assertEquals(TabHostStubActivity.INITIAL_VIEW_TEXT, textView.getText().toString());
291 TextView child0 = (TextView) tabHost.getTabContentView().getChildAt(0);
295 TextView child2 = (TextView) tabHost.getTabContentView().getChildAt(2);
307 child0 = (TextView) tabHost.getTabContentView().getChildAt(0)
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 29 import android.widget.TextView;
49 TextView mPrevText;
50 TextView mCurrText;
51 TextView mNextText;
83 void setSingleLineAllCaps(TextView text);
87 public void setSingleLineAllCaps(TextView text) {
93 public void setSingleLineAllCaps(TextView text) {
107 private static void setSingleLineAllCaps(TextView text) {
118 addView(mPrevText = new TextView(context));
119 addView(mCurrText = new TextView(context))
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarViewAdapter.java 29 import android.widget.TextView;
179 TextView weekDay = (TextView) v.findViewById(R.id.top_button_weekday);
180 TextView date = (TextView) v.findViewById(R.id.top_button_date);
221 TextView title = (TextView) v;
262 TextView viewType = (TextView)v.findViewById(R.id.button_view);
263 TextView date = (TextView)v.findViewById(R.id.button_date)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
AttendeesView.java 52 import android.widget.TextView;
78 // TextView shown at the top of each type of attendees
148 final TextView textView =
149 (TextView)mInflater.inflate(R.layout.event_info_label, this, false);
150 textView.setText(label);
151 textView.setClickable(false);
152 return textView;
159 ((TextView)divider).setText(label);
162 ((TextView)divider).setText(label + " (" + count + ")")
    [all...]
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainActivity.java 42 import android.widget.TextView;
153 TextView contextView = (TextView) View.inflate(this, R.layout.cert_chooser_header, null);
247 TextView installText = (TextView) footer.findViewById(R.id.cert_chooser_install_message);
290 holder.mAliasTextView = (TextView) view.findViewById(R.id.cert_item_alias);
291 holder.mSubjectTextView = (TextView) view.findViewById(R.id.cert_item_subject);
318 private final TextView mSubjectView;
319 private CertLoader(int adapterPosition, TextView subjectView) {
351 TextView mAliasTextView
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleReadRssiActivity.java 31 import android.widget.TextView;
73 ((TextView) findViewById(R.id.ble_rssi_text)).setText(Integer.toString(rssi));
  /developers/build/prebuilts/gradle/ActivityInstrumentation/ActivityInstrumentationSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/AdvancedImmersiveModeSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicAccessibility/BasicAccessibilitySample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/BasicAndroidKeyStoreSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicContactables/BasicContactablesSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicGestureDetect/BasicGestureDetectSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicImmersiveMode/BasicImmersiveModeSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicMediaRouter/BasicMediaRouterSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicMultitouch/BasicMultitouchSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {
  /developers/build/prebuilts/gradle/BasicNetworking/BasicNetworkingSample/src/main/java/com/example/android/common/logger/
LogView.java 21 import android.widget.TextView;
23 /** Simple TextView which is used to output log data received through the LogNode interface.
25 public class LogView extends TextView implements LogNode {

Completed in 1858 milliseconds

<<21222324252627282930>>