Searched refs:findViewById (Results 1 - 25 of 835) sorted by relevance

1234567891011>>

/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DPhoneCallDetailsViews.java56 return new PhoneCallDetailsViews((TextView) view.findViewById(R.id.name),
57 view.findViewById(R.id.call_type),
58 (CallTypeIconsView) view.findViewById(R.id.call_type_icons),
59 (TextView) view.findViewById(R.id.call_location_and_date),
60 (TextView) view.findViewById(R.id.voicemail_transcription),
61 (TextView) view.findViewById(R.id.call_account_label));
H A DPromoCardViewHolder.java50 mSettingsTextView = rootView.findViewById(R.id.settings_action);
51 mOkTextView = rootView.findViewById(R.id.ok_action);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DTimerSetupView.java88 View v1 = findViewById(R.id.first);
89 View v2 = findViewById(R.id.second);
90 View v3 = findViewById(R.id.third);
91 View v4 = findViewById(R.id.fourth);
93 mEnteredTime = (TimerView)findViewById(R.id.timer_time_text);
94 mDelete = (ImageButton)findViewById(R.id.delete);
97 mDivider = findViewById(R.id.divider);
99 mNumbers[1] = (Button)v1.findViewById(R.id.key_left);
100 mNumbers[2] = (Button)v1.findViewById(R.id.key_middle);
101 mNumbers[3] = (Button)v1.findViewById(
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DAbstractSettingPopup.java39 mTitle = (TextView) findViewById(R.id.title);
40 mSettingList = (ViewGroup) findViewById(R.id.settingList);
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DAbstractSettingPopup.java40 mTitle = (TextView) findViewById(R.id.title);
41 mSettingList = (ViewGroup) findViewById(R.id.settingList);
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DViewHelper.java34 TextView v = (TextView) mView.findViewById(R.id.error);
40 return ((TextView) mView.findViewById(viewId)).getText().toString();
45 TextView v = (TextView) mView.findViewById(viewId);
50 TextView v = (TextView) mView.findViewById(viewId);
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppViewHolder.java43 (ViewGroup) convertView.findViewById(android.R.id.widget_frame));
49 holder.appName = (TextView) convertView.findViewById(android.R.id.title);
50 holder.appIcon = (ImageView) convertView.findViewById(android.R.id.icon);
51 holder.summary = (TextView) convertView.findViewById(R.id.widget_text1);
52 holder.disabled = (TextView) convertView.findViewById(R.id.widget_text2);
H A DLayoutPreference.java44 // Need to create view now so that findViewById can be called immediately.
48 final ViewGroup allDetails = (ViewGroup) view.findViewById(R.id.all_details);
66 public View findViewById(int id) { method in class:LayoutPreference
67 return mRootView.findViewById(id);
/packages/apps/CellBroadcastReceiver/tests/src/com/android/cellbroadcastreceiver/tests/
H A DSendTestBroadcastActivity.java63 EditText messageIdField = (EditText) findViewById(R.id.message_id);
83 EditText categoryField = (EditText) findViewById(R.id.category_id);
102 EditText messageIdField = (EditText) findViewById(R.id.message_id);
106 EditText categoryIdField = (EditText) findViewById(R.id.category_id);
110 Button etwsNormalTypeButton = (Button) findViewById(R.id.button_etws_normal_type);
124 Button etwsCancelTypeButton = (Button) findViewById(R.id.button_etws_cancel_type);
138 Button etwsTestTypeButton = (Button) findViewById(R.id.button_etws_test_type);
152 Button cmasPresAlertButton = (Button) findViewById(R.id.button_cmas_pres_alert);
166 Button cmasExtremeAlertButton = (Button) findViewById(R.id.button_cmas_extreme_alert);
180 Button cmasSevereAlertButton = (Button) findViewById(
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/
H A DRotateDialogController.java61 mDialogRootLayout = v.findViewById(R.id.rotate_dialog_root_layout);
62 mRotateDialog = (RotateLayout) v.findViewById(R.id.rotate_dialog_layout);
63 mRotateDialogTitleLayout = v.findViewById(R.id.rotate_dialog_title_layout);
64 mRotateDialogButtonLayout = v.findViewById(R.id.rotate_dialog_button_layout);
65 mRotateDialogTitle = (TextView) v.findViewById(R.id.rotate_dialog_title);
66 mRotateDialogSpinner = (ProgressBar) v.findViewById(R.id.rotate_dialog_spinner);
67 mRotateDialogText = (TextView) v.findViewById(R.id.rotate_dialog_text);
68 mRotateDialogButton1 = (Button) v.findViewById(R.id.rotate_dialog_button1);
69 mRotateDialogButton2 = (Button) v.findViewById(R.id.rotate_dialog_button2);
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DFromAddressSpinnerAdapter.java61 final TextView nameView = (TextView) fromEntry.findViewById(R.id.spinner_account_name);
66 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
70 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
83 ((TextView) fromEntry.findViewById(R.id.spinner_account_name)).setText(fromItem.name);
84 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
87 ((TextView) fromEntry.findViewById(R.id.spinner_account_address))
H A DAttachmentComposeView.java63 final ImageButton deleteButton = (ImageButton) findViewById(R.id.remove_attachment);
70 ((TextView) findViewById(R.id.attachment_name)).setText(mAttachment.getName());
73 ((TextView) findViewById(R.id.attachment_size)).
76 ((TextView) findViewById(R.id.attachment_size)).setVisibility(View.GONE);
/packages/apps/Contacts/tests/src/com/android/contacts/tests/quickcontact/
H A DQuickContactTestsActivity.java58 mPickContact = (Button) findViewById(R.id.pick_contact);
59 mUriTextView = (TextView) findViewById(R.id.uri);
60 mSmallBadge1 = (QuickContactBadge) findViewById(R.id.small_badge1);
61 mSmallBadge2 = (QuickContactBadge) findViewById(R.id.small_badge2);
62 mMediumBadge1 = (QuickContactBadge) findViewById(R.id.medium_badge1);
63 mMediumBadge2 = (QuickContactBadge) findViewById(R.id.medium_badge2);
64 mLargeBadge1 = (QuickContactBadge) findViewById(R.id.large_badge1);
65 mLargeBadge2 = (QuickContactBadge) findViewById(R.id.large_badge2);
/packages/apps/Email/src/com/android/email/activity/
H A DUiUtilities.java31 * Same as {@link View#findViewById}, but crashes if there's no view.
35 return (T) checkView(parent.findViewById(viewId));
58 setVisibilitySafe(parent.findViewById(viewId), visibility);
/packages/apps/Messaging/src/com/android/messaging/ui/
H A DAudioAttachmentPlayPauseButton.java41 mPlayButton = (ImageView) findViewById(R.id.play_button);
42 mPauseButton = (ImageView) findViewById(R.id.pause_button);
H A DLicenseActivity.java32 final WebView webView = (WebView) findViewById(R.id.content);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
H A DWpsScanningFragment.java40 final TextView titleView = (TextView) view.findViewById(R.id.title);
42 final TextView descriptionView = (TextView) view.findViewById(R.id.description);
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DPhotoTableDream.java31 BummerView bummer = (BummerView) findViewById(R.id.bummer);
39 PhotoTable table = (PhotoTable) findViewById(R.id.table);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
H A DBaseSuggestionView.java57 mText1 = (TextView) findViewById(R.id.text1);
58 mText2 = (TextView) findViewById(R.id.text2);
59 mIcon1 = (ImageView) findViewById(R.id.icon1);
60 mIcon2 = (ImageView) findViewById(R.id.icon2);
/packages/apps/Dialer/src/com/android/dialer/widget/
H A DSearchEditTextLayout.java96 mCollapsed = findViewById(R.id.search_box_collapsed);
97 mExpanded = findViewById(R.id.search_box_expanded);
98 mSearchView = (EditText) mExpanded.findViewById(R.id.search_view);
100 mSearchIcon = findViewById(R.id.search_magnifying_glass);
101 mCollapsedSearchBox = findViewById(R.id.search_box_start_search);
102 mVoiceSearchButtonView = findViewById(R.id.voice_search_button);
103 mOverflowButtonView = findViewById(R.id.dialtacts_options_menu_button);
104 mBackButtonView = findViewById(R.id.search_back_button);
105 mExpandedSearchBox = findViewById(R.id.search_box_expanded);
106 mClearButtonView = findViewById(
[all...]
/packages/apps/Music/src/com/android/music/
H A DDeleteItems.java44 mPrompt = (TextView)findViewById(R.id.prompt);
45 mButton = (Button) findViewById(R.id.delete);
48 ((Button)findViewById(R.id.cancel)).setOnClickListener(new View.OnClickListener() {
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DPresetPreference.java52 final View previewViewport = view.findViewById(R.id.preview_viewport);
53 final SubtitleView previewText = (SubtitleView) view.findViewById(R.id.preview);
63 final TextView summary = (TextView) view.findViewById(R.id.summary);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiConfigController.java178 mIpSettingsSpinner = (Spinner) mView.findViewById(R.id.ip_settings);
180 mProxySettingsSpinner = (Spinner) mView.findViewById(R.id.proxy_settings);
186 mSsidView = (TextView) mView.findViewById(R.id.ssid);
188 mSecuritySpinner = ((Spinner) mView.findViewById(R.id.security));
190 mView.findViewById(R.id.type).setVisibility(View.VISIBLE);
194 mView.findViewById(R.id.wifi_advanced_toggle).setVisibility(View.VISIBLE);
195 ((CheckBox)mView.findViewById(R.id.wifi_advanced_togglebox))
203 ViewGroup group = (ViewGroup) mView.findViewById(R.id.info);
242 mView.findViewById(R.id.wifi_advanced_toggle).setVisibility(View.VISIBLE);
243 ((CheckBox)mView.findViewById(
[all...]
/packages/apps/Settings/src/com/android/settings/vpn2/
H A DConfigDialog.java94 mName = (TextView) mView.findViewById(R.id.name);
95 mType = (Spinner) mView.findViewById(R.id.type);
96 mServer = (TextView) mView.findViewById(R.id.server);
97 mUsername = (TextView) mView.findViewById(R.id.username);
98 mPassword = (TextView) mView.findViewById(R.id.password);
99 mSearchDomains = (TextView) mView.findViewById(R.id.search_domains);
100 mDnsServers = (TextView) mView.findViewById(R.id.dns_servers);
101 mRoutes = (TextView) mView.findViewById(R.id.routes);
102 mMppe = (CheckBox) mView.findViewById(R.id.mppe);
103 mL2tpSecret = (TextView) mView.findViewById(
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DNavTabView.java58 mContent = (ViewGroup) findViewById(R.id.main);
59 mClose = (ImageView) findViewById(R.id.closetab);
60 mTitle = (TextView) findViewById(R.id.title);
61 mTitleBar = findViewById(R.id.titlebar);
62 mImage = (ImageView) findViewById(R.id.tab_view);

Completed in 1608 milliseconds

1234567891011>>