| /packages/apps/Contacts/src/com/android/contacts/ |
| CallDetailActivity.java | 62 import android.widget.TextView; 99 private TextView mHeaderTextView; 120 private TextView mStatusMessageText; 121 private TextView mStatusMessageAction; 230 mHeaderTextView = (TextView) findViewById(R.id.header_text); 233 mStatusMessageText = (TextView) findViewById(R.id.voicemail_status_message); 234 mStatusMessageAction = (TextView) findViewById(R.id.voicemail_status_action); 647 TextView text = (TextView) convertView.findViewById(R.id.call_and_sms_text); 667 TextView label = (TextView) convertView.findViewById(R.id.call_and_sms_label) [all...] |
| /frameworks/base/core/java/com/android/internal/app/ |
| ResolverActivity.java | 43 import android.widget.TextView; 60 private TextView mClearDefaultHint; 108 mClearDefaultHint = (TextView)ap.mView.findViewById( 466 TextView text = (TextView)view.findViewById(com.android.internal.R.id.text1); 467 TextView text2 = (TextView)view.findViewById(com.android.internal.R.id.text2);
|
| /frameworks/base/media/tests/ScoAudioTest/src/com/android/scoaudiotest/ |
| ScoAudioTest.java | 49 import android.widget.TextView; 84 TextView mScoStateTxt; 85 TextView mVdStateTxt; 100 mScoStateTxt = (TextView) findViewById(R.id.scoStateTxt); 101 mVdStateTxt = (TextView) findViewById(R.id.vdStateTxt); 115 TextView name = (TextView) findViewById(R.id.playPause1Text);
|
| /frameworks/base/policy/src/com/android/internal/policy/impl/ |
| GlobalActions.java | 41 import android.widget.TextView; 361 TextView messageView = (TextView) v.findViewById(R.id.message); 439 TextView messageView = (TextView) v.findViewById(R.id.message); 440 TextView statusView = (TextView) v.findViewById(R.id.status);
|
| /packages/apps/Contacts/src/com/android/contacts/activities/ |
| ConfirmAddDetailActivity.java | 70 import android.widget.TextView; 95 private TextView mDisplayNameView; 96 private TextView mReadOnlyWarningView; 237 mReadOnlyWarningView = (TextView) findViewById(R.id.read_only_warning); 249 mDisplayNameView = (TextView) findViewById(R.id.name); 641 * Set the display name to the correct TextView. Don't do this until it is 650 * Set the TextView (for extra contact info) with the given value and make the 651 * TextView visible. 654 TextView extraTextView = (TextView) findViewById(R.id.extra_info) [all...] |
| /packages/apps/Contacts/src/com/android/contacts/list/ |
| ContactEntryListAdapter.java | 39 import android.widget.TextView; 516 TextView labelTextView = (TextView)view.findViewById(R.id.label); 517 TextView displayNameTextView = (TextView)view.findViewById(R.id.display_name); 530 TextView countText = (TextView)view.findViewById(R.id.count);
|
| /packages/apps/Email/src/com/android/email/activity/ |
| MailboxFragmentAdapter.java | 34 import android.widget.TextView; 347 final TextView nameView = (TextView) view.findViewById(R.id.display_name); 376 final TextView nameView = (TextView) view.findViewById(R.id.mailbox_name); 386 final TextView countView = (TextView) view.findViewById(R.id.message_count);
|
| /packages/apps/Music/src/com/android/music/ |
| MusicPicker.java | 46 import android.widget.TextView; 179 TextView line1; 180 TextView line2; 181 TextView duration; 219 vh.line1 = (TextView) v.findViewById(R.id.line1); 220 vh.line2 = (TextView) v.findViewById(R.id.line2); 221 vh.duration = (TextView) v.findViewById(R.id.duration);
|
| /packages/apps/Settings/src/com/android/settings/ |
| ChooseLockPassword.java | 45 import android.widget.TextView; 46 import android.widget.TextView.OnEditorActionListener; 81 private TextView mPasswordEntry; 94 private TextView mHeaderText; 193 mPasswordEntry = (TextView) view.findViewById(R.id.password_entry); 204 mHeaderText = (TextView) view.findViewById(R.id.headerText); 423 public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
|
| /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; 159 mErrorInfoView = (TextView) rootView.findViewById(R.id.sync_settings_error_info); 162 mUserId = (TextView) rootView.findViewById(R.id.user_id); 163 mProviderId = (TextView) rootView.findViewById(R.id.provider_id);
|
| /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...] |
| /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
| NetworkController.java | 50 import android.widget.TextView; 139 ArrayList<TextView> mCombinedLabelViews = new ArrayList<TextView>(); 140 ArrayList<TextView> mMobileLabelViews = new ArrayList<TextView>(); 141 ArrayList<TextView> mWifiLabelViews = new ArrayList<TextView>(); 265 public void addCombinedLabelView(TextView v) { 269 public void addMobileLabelView(TextView v) { 273 public void addWifiLabelView(TextView v) [all...] |
| /cts/tests/tests/widget/src/android/widget/cts/ |
| ArrayAdapterTest.java | 27 import android.widget.TextView; 208 final TextView textView = new TextView(mContext); 209 textView.setText(STR3); 221 assertEquals(STR1, ((TextView) mArrayAdapter.getView(0, null, null)).getText()); 222 assertEquals(STR2, ((TextView) mArrayAdapter.getView(1, null, null)).getText()); 223 assertEquals(STR3, ((TextView) mArrayAdapter.getDropDownView(2, null, null)).getText()); 225 assertEquals(STR3, textView.getText()); 226 assertSame(textView, mArrayAdapter.getView(0, textView, null)) [all...] |
| /frameworks/base/core/java/android/widget/ |
| AppSecurityPermissions.java | 82 private TextView mShowMoreText; 212 mShowMoreText = (TextView) mShowMore.findViewById(R.id.show_more_text); 329 TextView permGrpView = (TextView) permView.findViewById(R.id.permission_group); 330 TextView permDescView = (TextView) permView.findViewById(R.id.permission_list);
|
| 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;
|
| /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; 192 holder.dayView = (TextView) agendaDayView.findViewById(R.id.day); 193 holder.dateView = (TextView) agendaDayView.findViewById(R.id.date); 247 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, 288 TextView lastView = mImapPathPrefixView;
|
| /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/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/Snake/src/com/example/android/snake/ |
| SnakeView.java | 31 import android.widget.TextView; 86 private TextView mStatusText; 314 * Sets the TextView that will be used to give information (such as "Game 319 public void setTextView(TextView newView) { 325 * as well as sets the visibility of textview for notification
|
| /frameworks/base/packages/SystemUI/src/com/android/systemui/power/ |
| PowerUI.java | 40 import android.widget.TextView; 62 TextView mBatteryLevelTextView; 191 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; 172 TextView text = (TextView)mTextSwitcher.getChildAt(0);
|