| /packages/apps/Settings/src/com/android/settings/accounts/ | 
| AccountSyncSettings.java | 50 import android.widget.TextView; 72     private TextView mUserId;
 73     private TextView mProviderId;
 75     private TextView mErrorInfoView;
 161         mErrorInfoView = (TextView) rootView.findViewById(R.id.sync_settings_error_info);
 164         mUserId = (TextView) rootView.findViewById(R.id.user_id);
 165         mProviderId = (TextView) rootView.findViewById(R.id.provider_id);
 
 | 
| /cts/tests/tests/text/src/android/text/method/cts/ | 
| ScrollingMovementMethodTest.java | 34 import android.widget.TextView; 35 import android.widget.TextView.BufferType;
 51     private TextView mTextView;
 64         mTextView = new TextView(getActivity());
 84          * All these assertions depends on whether the TextView has a layout.The text view will not
 190          * All these assertions depends on whether the TextView has a layout.The text view will not
 293          * All these assertions depends on whether the TextView has a layout.The text view will not
 371          * All these assertions depends on whether the TextView has a layout.The text view will not
 406          * All these assertions depends on whether the TextView has a layout.The text view will not
 459          * All these assertions depends on whether the TextView has a layout.The text view will no
 [all...]
 | 
| /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/ | 
| ContactFragment.java | 75 import android.widget.TextView; 645         public TextView label;
 646         public TextView data;
 647         public TextView footer;
 680                 views.label = (TextView) v.findViewById(android.R.id.text1);
 681                 views.data = (TextView) v.findViewById(android.R.id.text2);
 682                 views.footer = (TextView) v.findViewById(R.id.footer);
 713             TextView label = views.label;
 718             TextView data = views.data;
 786         private void setMaxLines(TextView textView, int maxLines)
 [all...]
 | 
| /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ | 
| KeyboardView.java | 40 import android.widget.TextView; 145     private final SparseArray<TextView> mKeyPreviewTexts = CollectionUtils.newSparseArray();
 212                 final TextView previewText = keyboardView.mKeyPreviewTexts.get(tracker.mPointerId);
 [all...]
 | 
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ | 
| NetworkController.java | 43 import android.widget.TextView; 145     ArrayList<TextView> mCombinedLabelViews = new ArrayList<TextView>();
 146     ArrayList<TextView> mMobileLabelViews = new ArrayList<TextView>();
 147     ArrayList<TextView> mWifiLabelViews = new ArrayList<TextView>();
 148     ArrayList<TextView> mEmergencyLabelViews = new ArrayList<TextView>();
 291     public void addCombinedLabelView(TextView v)
 [all...]
 | 
| /frameworks/base/core/java/android/widget/ | 
| SuggestionsAdapter.java | 292         public final TextView mText1; 293         public final TextView mText2;
 299             mText1 = (TextView) v.findViewById(com.android.internal.R.id.text1);
 300             mText2 = (TextView) v.findViewById(com.android.internal.R.id.text2);
 383     private void setViewText(TextView v, CharSequence text) {
 490                 TextView tv = views.mText1;
 
 | 
| Editor.java | 91 import android.widget.TextView.Drawables; 92 import android.widget.TextView.OnEditorActionListener;
 100  * Helper class used by TextView to handle editable text views.
 149      * This flag is set if the TextView tries to display an error before it
 172     // Global listener that detects changes in the global position of the TextView
 178     // Set when this TextView gained focus with some text selected. Will start selection mode.
 188     private TextView mTextView;
 190     Editor(TextView textView) {
 191         mTextView = textView;
 [all...]
 | 
| /packages/apps/Browser/src/com/android/browser/ | 
| BrowserHistoryPage.java | 61 import android.widget.TextView; 256             CharSequence title = ((TextView) view).getText();
 605                 TextView item;
 606                 if (null == convertView || !(convertView instanceof TextView)) {
 608                     item = (TextView) factory.inflate(R.layout.history_header, null);
 610                     item = (TextView) convertView;
 
 | 
| /packages/apps/Calendar/src/com/android/calendar/agenda/ | 
| AgendaByDayAdapter.java | 34 import android.widget.TextView; 59         TextView dayView;
 60         TextView dateView;
 200                 holder.dayView = (TextView) agendaDayView.findViewById(R.id.day);
 201                 holder.dateView = (TextView) agendaDayView.findViewById(R.id.date);
 255             TextView title = holder.title;
 
 | 
| /packages/apps/Email/src/com/android/email/activity/setup/ | 
| AccountSetupIncomingFragment.java | 35 import android.widget.TextView; 65     private TextView mServerLabelView;
 69     private TextView mDeletePolicyLabelView;
 114         mServerLabelView = (TextView) UiUtilities.getView(view, R.id.account_server_label);
 118         mDeletePolicyLabelView = (TextView) UiUtilities.getView(view,
 296         TextView lastView = mImapPathPrefixView;
 
 | 
| /packages/apps/Launcher2/src/com/android/launcher2/ | 
| FolderIcon.java | 40 import android.widget.TextView; 326         Drawable animateDrawable = ((TextView) destView).getCompoundDrawables()[1];
 340         Drawable animateDrawable = ((TextView) finalView).getCompoundDrawables()[1];
 540         TextView v;
 546             v = (TextView) items.get(0);
 554                 v = (TextView) items.get(i);
 
 | 
| /cts/apps/CtsVerifier/src/com/android/cts/verifier/suid/ | 
| SuidFilesActivity.java | 38 import android.widget.TextView; 160             TextView view = (TextView) super.getView(position, convertView, parent);
 
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/graphics/ | 
| DensityActivity.java | 31 import android.widget.TextView; 123         TextView label = new TextView(this);
 
 | 
| /development/samples/ApiDemos/src/com/example/android/apis/view/ | 
| OverscanActivity.java | 43 import android.widget.TextView; 150     TextView mMetricsText;
 212         mMetricsText = (TextView) findViewById(R.id.metricsText);
 
 | 
| /development/samples/Home/src/com/example/android/home/ | 
| ApplicationsStackLayout.java | 29 import android.widget.TextView; 305         TextView textView = (TextView) inflater.inflate(R.layout.favorite, group, false);
 308         textView.setCompoundDrawables(null, info.icon, null, null);
 309         textView.setText(info.title);
 311         textView.setTag(info.intent);
 312         textView.setOnClickListener(this);
 314         return textView;
 
 | 
| /development/samples/RSSReader/src/com/example/android/rssreader/ | 
| RssReader.java | 38 import android.widget.TextView; 87     private TextView mStatusText;
 134         mStatusText = (TextView)findViewById(R.id.statustext);
 
 | 
| /development/samples/RenderScript/Levels/src/com/android/rs/levels/ | 
| LevelsDalvikActivity.java | 29 import android.widget.TextView; 48     private TextView mBenchmarkResult;
 154         mBenchmarkResult = (TextView) findViewById(R.id.benchmarkText);
 
 | 
| /development/samples/Snake/src/com/example/android/snake/ | 
| SnakeView.java | 27 import android.widget.TextView; 81     private TextView mStatusText;
 317     public void setDependentViews(TextView msgView, View arrowView, View backgroundView) {
 325      * the visibility of textview for notification
 
 | 
| /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ | 
| WiFiServiceDiscoveryActivity.java | 26 import android.widget.TextView; 73     private TextView statusTxtView;
 88         statusTxtView = (TextView) findViewById(R.id.status_text);
 
 | 
| /development/tools/recovery_l10n/src/com/android/recovery_l10n/ | 
| Main.java | 32 import android.widget.TextView; 78     TextView mText;
 147         mText = (TextView) findViewById(R.id.text);
 
 | 
| /external/zxing/qr_scanner/src/com/google/zxing/client/android/ | 
| CaptureActivity.java | 40 import android.widget.TextView; 60   private TextView statusView;
 85     statusView = (TextView) findViewById(R.id.status_view);
 
 | 
| /frameworks/base/core/java/android/app/ | 
| FragmentBreadCrumbs.java | 29 import android.widget.TextView; 306                 final TextView text = (TextView) item.findViewById(com.android.internal.R.id.title);
 
 | 
| /frameworks/base/packages/SystemUI/src/com/android/systemui/power/ | 
| PowerUI.java | 41 import android.widget.TextView; 63     TextView mBatteryLevelTextView;
 192             mBatteryLevelTextView = (TextView)v.findViewById(R.id.level_percent);
 
 | 
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ | 
| Ticker.java | 32 import android.widget.TextView; 182         TextView text = (TextView)mTextSwitcher.getChildAt(0);
 
 | 
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ | 
| TabletTicker.java | 41 import android.widget.TextView; 296             TextView tv = (TextView)group.findViewById(R.id.text);
 
 |