| /tools/motodev/src/plugins/android.codeutils/templates/activity_samples/database_list/ | 
| database_list_activity.java | 28 import android.widget.TextView; 126 		TextView txt = new TextView(this);
 147 			TextView txt = new TextView(this);
 
 | 
| /cts/tests/tests/widget/src/android/widget/cts/ | 
| TableRowTest.java | 34 import android.widget.TextView; 69         tableRow.addView(new TextView(mContext));
 77         tableRow.addView(new TextView(mContext));
 93                 ((TextView) tableRow.getVirtualChildAt(0)).getText().toString());
 95                 ((TextView) tableRow.getVirtualChildAt(1)).getText().toString());
 97                 ((TextView) tableRow.getVirtualChildAt(2)).getText().toString());
 105                 ((TextView) tableRow.getVirtualChildAt(1)).getText().toString());
 107                 ((TextView) tableRow.getVirtualChildAt(2)).getText().toString());
 109                 ((TextView) tableRow.getVirtualChildAt(3)).getText().toString());
 111                 ((TextView) tableRow.getVirtualChildAt(4)).getText().toString())
 [all...]
 | 
| /packages/apps/Calendar/src/com/android/calendar/agenda/ | 
| AgendaAdapter.java | 31 import android.widget.TextView; 70         TextView title;
 71         TextView when;
 72         TextView where;
 121             holder.title = (TextView) view.findViewById(R.id.title);
 122             holder.when = (TextView) view.findViewById(R.id.when);
 123             holder.where = (TextView) view.findViewById(R.id.where);
 174         TextView title = holder.title;
 175         TextView when = holder.when;
 176         TextView where = holder.where
 [all...]
 | 
| /tools/motodev/src/plugins/android.codeutils/resources/databaseDeploy/ | 
| DatabaseListActivity.txt | 27 import android.widget.TextView; 126 		TextView txt = new TextView(this);
 147 			TextView txt = new TextView(this);
 
 | 
| /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ | 
| EqualizerTest.java | 30 import android.widget.TextView; 71         TextView textView;
 100             textView = (TextView)findViewById(R.id.eqParam1Value);
 101             mParameters[0] = new BandLevelParam(mEqualizer, 0, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
 111             textView = (TextView)findViewById(R.id.eqParam2Value);
 112             mParameters[1] = new BandLevelParam(mEqualizer, 1, bandLevelRange[0], bandLevelRange[1], seekBar, textView);
 122             textView = (TextView)findViewById(R.id.eqParam3Value)
 [all...]
 | 
| /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/ | 
| ImageProcessingActivity.java | 37 import android.widget.TextView; 68     private TextView mText1;
 69     private TextView mText2;
 70     private TextView mText3;
 71     private TextView mText4;
 72     private TextView mText5;
 76     private TextView mBenchmarkResult;
 320         mText1 = (TextView) findViewById(R.id.slider1Text);
 321         mText2 = (TextView) findViewById(R.id.slider2Text);
 322         mText3 = (TextView) findViewById(R.id.slider3Text)
 [all...]
 | 
| /frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/ | 
| ImageProcessingActivity2.java | 32 import android.widget.TextView; 63     private TextView mText1;
 64     private TextView mText2;
 65     private TextView mText3;
 66     private TextView mText4;
 67     private TextView mText5;
 71     private TextView mBenchmarkResult;
 315         mText1 = (TextView) findViewById(R.id.slider1Text);
 316         mText2 = (TextView) findViewById(R.id.slider2Text);
 317         mText3 = (TextView) findViewById(R.id.slider3Text)
 [all...]
 | 
| /frameworks/base/core/tests/coretests/src/android/view/ | 
| ListContextMenu.java | 35 import android.widget.TextView; 74             TextView view;
 77                 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
 79                 view = (TextView) convertView;
 134         String text = ((TextView) info.targetView).getText().toString();
 141             TextView textView = new TextView(this);
 142             textView.setText("This is a test of a custom View");
 143             menu.setHeaderView(textView);
 [all...]
 | 
| /packages/apps/Browser/src/com/android/browser/ | 
| ErrorConsoleView.java | 33 import android.widget.TextView; 47     private TextView mConsoleHeader;
 80         mConsoleHeader = (TextView) findViewById(R.id.error_console_header_id);
 305                 TextView headline = (TextView) view.findViewById(android.R.id.text1);
 306                 TextView subText = (TextView) view.findViewById(android.R.id.text2);
 
 | 
| /packages/apps/Calendar/src/com/android/calendar/alerts/ | 
| AlertAdapter.java | 31 import android.widget.TextView; 86         TextView titleView = (TextView) view.findViewById(R.id.event_title);
 87         TextView whenView = (TextView) view.findViewById(R.id.when);
 88         TextView whereView = (TextView) view.findViewById(R.id.where);
 
 | 
| /packages/apps/Camera/src/com/android/camera/ | 
| RotateDialogController.java | 27 import android.widget.TextView; 44     private TextView mRotateDialogTitle;
 46     private TextView mRotateDialogText;
 47     private TextView mRotateDialogButton1;
 48     private TextView mRotateDialogButton2;
 66             mRotateDialogTitle = (TextView) v.findViewById(R.id.rotate_dialog_title);
 68             mRotateDialogText = (TextView) v.findViewById(R.id.rotate_dialog_text);
 
 | 
| /packages/apps/Contacts/src/com/android/contacts/activities/ | 
| ContactEditorAccountsChangedActivity.java | 29 import android.widget.TextView; 92             final TextView textView = (TextView) findViewById(R.id.text);
 93             textView.setText(getString(R.string.contact_editor_prompt_multiple_accounts));
 109             final TextView textView = (TextView) findViewById(R.id.text);
 114             textView.setText(getString(R.string.contact_editor_prompt_one_account,
 136             final TextView textView = (TextView) findViewById(R.id.text)
 [all...]
 | 
| /packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ | 
| ResultActivity.java | 38 import android.widget.TextView; 134         TextView label = new TextView(this);
 137         TextView value = new TextView(this);
 166         TextView labelView = new TextView(this);
 
 | 
| /packages/apps/Mms/src/com/android/mms/ui/ | 
| ConversationListItem.java | 35 import android.widget.TextView; 52     private TextView mSubjectView;
 53     private TextView mFromView;
 54     private TextView mDateView;
 84         mFromView = (TextView) findViewById(R.id.from);
 85         mSubjectView = (TextView) findViewById(R.id.subject);
 87         mDateView = (TextView) findViewById(R.id.date);
 
 | 
| RecipientsAdapter.java | 36 import android.widget.TextView; 137         TextView name = (TextView) view.findViewById(R.id.name);
 140         TextView label = (TextView) view.findViewById(R.id.label);
 154         TextView number = (TextView) view.findViewById(R.id.number);
 
 | 
| /packages/apps/Settings/src/com/android/settings/ | 
| ConfirmLockPassword.java | 41 import android.widget.TextView; 42 import android.widget.TextView.OnEditorActionListener;
 67         private TextView mPasswordEntry;
 69         private TextView mHeaderText;
 99             mPasswordEntry = (TextView) view.findViewById(R.id.password_entry);
 104             mHeaderText = (TextView) view.findViewById(R.id.headerText);
 187         public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
 
 | 
| UsageStats.java | 47 import android.widget.TextView; 97         TextView pkgName;
 98         TextView launchCount;
 99         TextView usageTime;
 172                 holder.pkgName = (TextView) convertView.findViewById(R.id.package_name);
 173                 holder.launchCount = (TextView) convertView.findViewById(R.id.launch_count);
 174                 holder.usageTime = (TextView) convertView.findViewById(R.id.usage_time);
 177                 // Get the ViewHolder back to get fast access to the TextView
 
 | 
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/ | 
| StreamingVideoActivity.java | 28 import android.widget.TextView; 133         TextView empty = (TextView) findViewById(android.R.id.empty);
 
 | 
| /cts/tests/tests/text/src/android/text/method/cts/ | 
| DateKeyListenerTest.java | 28 import android.widget.TextView; 37     private TextView mTextView;
 49         mTextView = (TextView) mActivity.findViewById(R.id.keylistener_textview);
 82      * 1. Press '1' key and check if the content of TextView becomes "1"
 83      * 2. Press '2' key and check if the content of TextView becomes "12"
 85      * 4. Press '-' key and check if the content of TextView becomes "12-"
 86      * 5. Press '/' key and check if the content of TextView becomes "12-/"
 
 | 
| /cts/tests/tests/text/src/android/text/util/cts/ | 
| LinkifyTest.java | 27 import android.widget.TextView; 108         TextView tv = new TextView(mContext);
 124             Linkify.addLinks((TextView)null, Linkify.WEB_URLS);
 130         assertFalse(Linkify.addLinks((TextView)null, 0));
 135         TextView tv = new TextView(mContext);
 153             Linkify.addLinks((TextView) null, LINKIFY_TEST_PATTERN, "Test:");
 166         tv = new TextView(mContext);
 176         TextView tv = new TextView(mContext)
 [all...]
 | 
| /development/apps/GestureBuilder/src/com/android/gesture/builder/ | 
| CreateGestureActivity.java | 27 import android.widget.TextView; 80             final TextView input = (TextView) findViewById(R.id.gesture_name);
 
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/accessibility/ | 
| TaskListView.java | 30 import android.widget.TextView; 96         TextView label = (TextView)(convertView.findViewById(R.id.tasklist_label));
 
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/app/ | 
| ActionBarTabs.java | 29 import android.widget.TextView; 126             TextView text = (TextView) fragView.findViewById(R.id.text);
 
 | 
| QuickContactsDemo.java | 31 import android.widget.TextView; 91             cache.nameView = (TextView) view.findViewById(R.id.name);
 100         public TextView nameView;
 
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/preference/ | 
| MyPreference.java | 28 import android.widget.TextView; 49         final TextView myTextView = (TextView) view.findViewById(R.id.mypreference_widget);
 
 |