/development/samples/Support7Demos/src/com/example/android/supportv7/view/ |
GridLayout3.java | 40 import android.widget.TextView; 76 TextView c = new TextView(context); 82 TextView c = new TextView(context); 88 TextView c = new TextView(context); 99 TextView c = new TextView(context);
|
/frameworks/base/tests/BiDiTests/src/com/android/bidi/ |
BiDiTestGridLayoutCodeLtr.java | 72 TextView c = new TextView(context); 78 TextView c = new TextView(context); 84 TextView c = new TextView(context); 95 TextView c = new TextView(context); 100 TextView c = new EditText(context);
|
BiDiTestGridLayoutCodeRtl.java | 72 TextView c = new TextView(context); 78 TextView c = new TextView(context); 84 TextView c = new TextView(context); 95 TextView c = new TextView(context); 100 TextView c = new EditText(context);
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
ListViewAddRemove.java | 29 import android.widget.TextView; 65 TextView view = (TextView) listview.getChildAt(i); 92 TextView view = (TextView) listview.getChildAt(i); 101 TextView view = (TextView) listview.getChildAt(i); 118 TextView v = (TextView) listview.getChildAt(i); 131 // TextView v = (TextView) listview.getChildAt(i) [all...] |
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/ |
IntegrationTestUtils.java | 29 import android.widget.TextView; 75 /** Returns the result of running {@link TextView#getText()} on the ui thread. */ 76 public CharSequence getText(final TextView view) throws Throwable { 138 * Gets all {@link TextView} objects whose {@link TextView#getText()} contains the given text as 141 public List<TextView> getTextViewsWithString(final Activity activity, final String text) 143 return runOnUiThreadAndGetTheResult(new Callable<List<TextView>>() { 145 public List<TextView> call() throws Exception { 146 List<TextView> matchingViews = new ArrayList<TextView>(); [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/timer/ |
TimerView.java | 25 import android.widget.TextView; 32 private TextView mHoursOnes, mMinutesOnes; 33 private TextView mMinutesTens; 34 private TextView mSeconds; 60 mHoursOnes = (TextView) findViewById(R.id.hours_ones); 64 mMinutesTens = (TextView) findViewById(R.id.minutes_tens); 68 mMinutesOnes = (TextView) findViewById(R.id.minutes_ones); 72 mSeconds = (TextView) findViewById(R.id.seconds); 80 * @param textView view to measure and onb to which add start padding 82 private void addStartPadding(TextView textView) [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
AudioAttachmentView.java | 33 import android.widget.TextView; 45 private TextView mNameView; 46 private TextView mAlbumView; 47 private TextView mArtistView; 48 private TextView mErrorMsgView; 65 mNameView = (TextView) findViewById(R.id.audio_name); 66 mAlbumView = (TextView) findViewById(R.id.album_name); 67 mArtistView = (TextView) findViewById(R.id.artist_name); 68 mErrorMsgView = (TextView) findViewById(R.id.audio_error_msg);
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
FragmentHideShow.java | 31 import android.widget.TextView; 70 TextView mTextView; 77 ((TextView)tv).setText("The fragment saves and restores this text."); 80 mTextView = (TextView)v.findViewById(R.id.saved); 103 ((TextView)tv).setText("The TextView saves and restores this text."); 109 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true);
|
SaveRestoreState.java | 26 import android.widget.TextView; 81 ((TextView)findViewById(R.id.msg)).setText(R.string.save_restore_msg);
|
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
FragmentHideShowSupport.java | 32 import android.widget.TextView; 71 TextView mTextView; 78 ((TextView)tv).setText("The fragment saves and restores this text."); 81 mTextView = (TextView)v.findViewById(R.id.saved); 104 ((TextView)tv).setText("The TextView saves and restores this text."); 110 ((TextView)v.findViewById(R.id.saved)).setSaveEnabled(true);
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
WiFiDirectServicesList.java | 13 import android.widget.TextView; 50 ((TextView) v.findViewById(android.R.id.text2)).setText("Connecting"); 74 TextView nameText = (TextView) v 80 TextView statusText = (TextView) v
|
/frameworks/base/core/tests/coretests/src/android/widget/gridview/ |
GridThrasher.java | 31 import android.widget.TextView; 43 TextView mText; 90 TextView view; 93 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null); 95 view = (TextView) convertView; 118 mText = (TextView) findViewById(R.id.text);
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListThrasher.java | 30 import android.widget.TextView; 41 TextView mText; 88 TextView view; 91 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null); 93 view = (TextView) convertView; 115 mText = (TextView) findViewById(R.id.text);
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
TestBase.java | 30 import android.widget.TextView; 60 public boolean onBar1Setup(SeekBar b, TextView t) { 65 public boolean onBar2Setup(SeekBar b, TextView t) { 70 public boolean onBar3Setup(SeekBar b, TextView t) { 75 public boolean onBar4Setup(SeekBar b, TextView t) { 80 public boolean onBar5Setup(SeekBar b, TextView t) {
|
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
FromAddressSpinnerAdapter.java | 25 import android.widget.TextView; 80 ((TextView) fromEntry.findViewById(R.id.spinner_account_name)).setText(fromItem.name); 82 ((TextView) fromEntry.findViewById(R.id.spinner_account_address)) 94 TextView acctName = ((TextView) fromEntry.findViewById(R.id.spinner_account_name)); 97 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
|
/development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/ |
DeviceDetailFragment.java | 37 import android.widget.TextView; 126 TextView statusText = (TextView) mContentView.findViewById(R.id.status_text); 147 TextView view = (TextView) mContentView.findViewById(R.id.group_owner); 153 view = (TextView) mContentView.findViewById(R.id.device_info); 166 ((TextView) mContentView.findViewById(R.id.status_text)).setText(getResources() 182 TextView view = (TextView) mContentView.findViewById(R.id.device_address); 184 view = (TextView) mContentView.findViewById(R.id.device_info) [all...] |
DeviceListFragment.java | 34 import android.widget.TextView; 127 TextView top = (TextView) v.findViewById(R.id.device_name); 128 TextView bottom = (TextView) v.findViewById(R.id.device_details); 149 TextView view = (TextView) mContentView.findViewById(R.id.my_name); 151 view = (TextView) mContentView.findViewById(R.id.my_status);
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/ |
TranslateLanguagePanel.java | 19 import android.widget.TextView; 73 TextView panelMessage = (TextView) layout.findViewById(R.id.infobar_message); 209 TextView estimator = (TextView) LayoutInflater.from(getContext()).inflate( 221 TextView result; 222 if (!(convertView instanceof TextView)) { 223 result = (TextView) LayoutInflater.from(getContext()).inflate( 226 result = (TextView) convertView; 236 TextView result [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
PagedViewWidget.java | 31 import android.widget.TextView; 83 TextView name = (TextView) findViewById(R.id.widget_name); 87 TextView dims = (TextView) findViewById(R.id.widget_dims); 129 final TextView name = (TextView) findViewById(R.id.widget_name); 131 final TextView dims = (TextView) findViewById(R.id.widget_dims); 145 final TextView name = (TextView) findViewById(R.id.widget_name) [all...] |
/packages/apps/Settings/src/com/android/settings/ |
RadioInfo.java | 50 import android.widget.TextView; 92 private TextView mDeviceId; //DeviceId is the IMEI in GSM and the MEID in CDMA 93 private TextView number; 94 private TextView callState; 95 private TextView operatorName; 96 private TextView roamingState; 97 private TextView gsmState; 98 private TextView gprsState; 99 private TextView network; 100 private TextView dBm [all...] |
/development/apps/Development/src/com/android/development/ |
Details.java | 31 import android.widget.TextView; 87 TextView label = makeView(cd.key, true, 12); 88 TextView contents = makeView(cd.value, false, 12); 95 TextView makeView(String str, boolean bold, int fontSize) 100 TextView v = new TextView(this); 129 TextView error = new TextView(Details.this);
|
LogTextBox.java | 19 import android.widget.TextView; 30 * This is a TextView that is Editable and by default scrollable, 37 * {@link android.R.styleable#TextView TextView Attributes}, 40 public class LogTextBox extends TextView {
|
/development/samples/ApiDemos/src/com/example/android/apis/text/ |
LogTextBox.java | 19 import android.widget.TextView; 27 * This is a TextView that is Editable and by default scrollable, 34 * {@link android.R.styleable#TextView TextView Attributes}, 37 public class LogTextBox extends TextView {
|
/development/samples/training/testingfun/app/src/com/example/android/testingfun/lesson4/ |
NextActivity.java | 24 import android.widget.TextView; 28 * displays it using a TextView. 57 ((TextView) findViewById(R.id.next_activity_info_text_view)).setText(stringPayload);
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
TextViewTest.java | 24 * TextViewTest tests {@link TextView}. 30 TextView tv = new TextView(mContext);
|