Searched refs:id (Results 176 - 200 of 1376) sorted by relevance

1234567891011>>

/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/deviceinfo/
H A DFileItemInfoLayout.java50 mFileNameView = (TextView) findViewById(R.id.misc_filename);
51 mFileSizeView = (TextView) findViewById(R.id.misc_filesize);
52 mCheckbox = (CheckBox) findViewById(R.id.misc_checkbox);
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DPowerGaugePreference.java63 final ProgressBar progress = (ProgressBar) view.findViewById(android.R.id.progress);
66 final TextView text1 = (TextView) view.findViewById(android.R.id.text1);
70 final TextView titleView = (TextView) view.findViewById(android.R.id.title);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DAbstractHtmlTemplates.java65 protected String readTemplate(int id) throws Resources.NotFoundException { argument
71 mContext.getResources().openRawResource(id), "UTF-8");
87 throw new Resources.NotFoundException("Unable to open template id="
88 + Integer.toHexString(id) + " exception=" + e.getMessage());
H A DAccountItemView.java57 mAccountDisplayName = (TextView)findViewById(R.id.account_display_name);
58 mAccountAddress = (TextView)findViewById(R.id.account_address);
59 mAvatar = (ImageView)findViewById(R.id.avatar);
60 mCheckmark = (ImageView)findViewById(R.id.checkmark);
94 ImageView v = (ImageView) mAvatar.findViewById(R.id.avatar);
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DHomeGroupsXLarge.java60 xact.add(R.id.smallPane, groupsList);
61 xact.add(R.id.largePane, contactsList);
71 return (ContactsListFragment) findFragmentById(R.id.largePane);
73 return (ContactsListFragment) findFragmentById(R.id.smallPane);
103 xact.remove(findFragmentById(R.id.smallPane));
104 xact.add(R.id.largePane, details);
108 xact.replace(R.id.largePane, details);
114 ViewGroup paneHost = (ViewGroup) findViewById(R.id.paneHost);
116 View largePane = findViewById(R.id.largePane);
120 View smallPane = findViewById(R.id
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DKeyboardCodesSet.java33 Integer id = sNameToIdMap.get(name);
34 if (id == null) throw new RuntimeException("Unknown key code: " + name);
35 return DEFAULT[id];
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node_vector.h72 DicNode *operator[](const int id) { argument
73 ASSERT(id < static_cast<int>(mDicNodes.size()));
74 return &mDicNodes[id];
/packages/services/Telecomm/tests/src/com/android/server/telecom/testapps/
H A DTestDialerActivity.java19 findViewById(R.id.set_default_button).setOnClickListener(new OnClickListener() {
25 findViewById(R.id.place_call_button).setOnClickListener(new OnClickListener() {
32 mNumberView = (EditText) findViewById(R.id.number);
/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DAlarm.java39 * Alarms start with an invalid id when it hasn't been saved to the database.
81 if (alarm.id != INVALID_ID) {
82 values.put(ClockContract.AlarmsColumns._ID, alarm.id);
130 * Get alarm by id.
191 alarm.id = getId(uri);
196 if (alarm.id == Alarm.INVALID_ID) return false;
198 long rowsUpdated = contentResolver.update(getUri(alarm.id), values, null, null);
220 public long id; field in class:Alarm
236 this.id = INVALID_ID;
247 id
[all...]
/packages/apps/Music/src/com/android/music/
H A DPlaylistBrowserActivity.java106 long id = Long.parseLong(b.getString("playlist"));
107 if (id == RECENTLY_ADDED_PLAYLIST) {
109 } else if (id == PODCASTS_PLAYLIST) {
111 } else if (id == ALL_SONGS_PLAYLIST) {
117 MusicUtils.playPlaylist(PlaylistBrowserActivity.this, id);
120 Log.w(TAG, "Playlist id missing or broken");
141 MusicUtils.updateButtonBar(this, R.id.playlisttab);
155 new int[] { android.R.id.text1 });
260 MusicUtils.updateButtonBar(this, R.id.playlisttab);
302 if (mi.id >
375 onListItemClick(ListView l, View v, int position, long id) argument
[all...]
/packages/apps/Browser/src/com/android/browser/widget/
H A DBookmarkThumbnailWidgetService.java108 .notifyAppWidgetViewDataChanged(wid, R.id.bookmarks_list);
143 for (int id : ids) {
144 mWidgetIds.add(id);
152 int id = Integer.parseInt(m.group(1));
153 if (!mWidgetIds.contains(id)) {
221 long id = mBookmarks.getLong(BOOKMARK_INDEX_ID);
241 views.setTextViewText(R.id.label, displayTitle);
243 if (id == mCurrentFolder) {
244 id = mBookmarks.getLong(BOOKMARK_INDEX_PARENT_ID);
245 views.setImageViewResource(R.id
[all...]
/packages/apps/Settings/src/com/android/settings/
H A DRegulatoryInfoDisplayActivity.java80 ImageView image = (ImageView) view.findViewById(R.id.regulatoryInfo);
88 TextView messageText = (TextView) dialog.findViewById(android.R.id.message);
105 int id = getResources().getIdentifier(
107 if (id != 0) {
108 resId = id;
H A DSetFullBackupPassword.java87 mCurrentPw = (TextView) findViewById(R.id.current_backup_pw);
88 mNewPw = (TextView) findViewById(R.id.new_backup_pw);
89 mConfirmNewPw = (TextView) findViewById(R.id.confirm_new_backup_pw);
91 mCancel = (Button) findViewById(R.id.backup_pw_cancel_button);
92 mSet = (Button) findViewById(R.id.backup_pw_set_button);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/
H A DMenuItem.java44 public Builder id(int id) { argument
45 mId = id;
122 private MenuItem(int id, String displayName, argument
125 mId = id;
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DWebViewContextMenu.java230 // Note, http://b/issue?id=1106666 is requesting that
248 menu.setGroupVisible(R.id.PHONE_MENU, type == WebView.HitTestResult.PHONE_TYPE);
249 menu.setGroupVisible(R.id.EMAIL_MENU, type == WebView.HitTestResult.EMAIL_TYPE);
250 menu.setGroupVisible(R.id.GEO_MENU, type == WebView.HitTestResult.GEO_TYPE);
251 menu.setGroupVisible(R.id.ANCHOR_MENU, type == WebView.HitTestResult.SRC_ANCHOR_TYPE
253 menu.setGroupVisible(R.id.IMAGE_MENU, type == WebView.HitTestResult.IMAGE_TYPE
401 menu.setGroupVisible(R.id.IMAGE_MENU, false);
407 menu.setGroupVisible(R.id.IMAGE_MENU, false);
411 final MenuItem menuItem = menu.findItem(R.id.view_image_context_menu_id);
414 menu.setGroupVisible(R.id
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
H A DGroupsListFragment.java75 protected Loader onCreateLoader(int id, Bundle args) { argument
76 switch (id) {
102 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
103 if (id == GROUP_ID_ALL_CONTACTS) {
105 } else if (id == GROUP_ID_FAVORITES) {
/packages/apps/Camera2/src/com/android/camera/app/
H A DFilmstripBottomPanel.java60 mMiddleFiller = mLayout.findViewById(R.id.filmstrip_bottom_control_middle_filler);
61 mControlLayout = mLayout.findViewById(R.id.bottom_control_panel);
190 mEditButton = (ImageButton) mLayout.findViewById(R.id.filmstrip_bottom_control_edit);
207 R.id.filmstrip_bottom_control_view);
219 mDeleteButton = (ImageButton) mLayout.findViewById(R.id.filmstrip_bottom_control_delete);
231 mShareButton = (ImageButton) mLayout.findViewById(R.id.filmstrip_bottom_control_share);
243 mProgressLayout = mLayout.findViewById(R.id.bottom_progress_panel);
244 mProgressText = (TextView) mLayout.findViewById(R.id.bottom_session_progress_text);
245 mProgressBar = (ProgressBar) mLayout.findViewById(R.id.bottom_session_progress_bar);
248 mProgressErrorText = (TextView) mLayout.findViewById(R.id
[all...]
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupOptionsFragment.java61 mCheckFrequencyView = UiUtilities.getView(view, R.id.account_check_frequency);
62 mSyncWindowView = UiUtilities.getView(view, R.id.account_sync_window);
63 mNotifyView = UiUtilities.getView(view, R.id.account_notify);
65 mSyncContactsView = UiUtilities.getView(view, R.id.account_sync_contacts);
66 mSyncCalendarView = UiUtilities.getView(view, R.id.account_sync_calendar);
67 mSyncEmailView = UiUtilities.getView(view, R.id.account_sync_email);
69 mBackgroundAttachmentsView = UiUtilities.getView(view, R.id.account_background_attachments);
71 mAccountSyncWindowRow = UiUtilities.getView(view, R.id.account_sync_window_row);
113 UiUtilities.setVisibilitySafe(view, R.id.account_sync_contacts_divider, View.VISIBLE);
118 UiUtilities.setVisibilitySafe(view, R.id
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DSecureAlbum.java37 private int mMinImageId = Integer.MAX_VALUE; // the smallest id of images
38 private int mMaxImageId = Integer.MIN_VALUE; // the biggest id in images
39 private int mMinVideoId = Integer.MAX_VALUE; // the smallest id of videos
40 private int mMaxVideoId = Integer.MIN_VALUE; // the biggest id of videos
66 public void addMediaItem(boolean isVideo, int id) { argument
70 mMinVideoId = Math.min(mMinVideoId, id);
71 mMaxVideoId = Math.max(mMaxVideoId, id);
74 mMinImageId = Math.min(mMinImageId, id);
75 mMaxImageId = Math.max(mMaxImageId, id);
77 Path path = pathBase.getChild(id);
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
H A DColorPickerDialog.java56 mColorHueView = (ColorHueView) findViewById(R.id.ColorHueView);
57 mColorSVRectView = (ColorSVRectView) findViewById(R.id.colorRectView);
58 mColorOpacityView = (ColorOpacityView) findViewById(R.id.colorOpacityView);
59 mColorCompareView = (ColorCompareView) findViewById(R.id.btnSelect);
64 ImageButton apply = (ImageButton) findViewById(R.id.applyColorPick);
65 ImageButton cancel = (ImageButton) findViewById(R.id.cancelColorPick);
112 int id = v.getId();
118 if (id != buttons[i]) {
127 ColorHueView csv = (ColorHueView) findViewById(R.id.ColorHueView);
128 ColorSVRectView cwv = (ColorSVRectView) findViewById(R.id
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSelectionManager.java189 Path id = set.getPath();
190 if (!mClickedSet.contains(id)) {
196 selected.add(id);
204 for (Path id : mClickedSet) {
206 if (!expandMediaSet(selected, mDataManager.getMediaSet(id),
211 selected.add(id);
226 Path id = item.getPath();
227 if (!mClickedSet.contains(id)) {
228 selected.add(id);
237 for (Path id
[all...]
/packages/apps/InCallUI/src/com/android/incallui/
H A DConferenceManagerFragment.java69 final int[] viewGroupIdList = { R.id.caller0, R.id.caller1, R.id.caller2,
70 R.id.caller3, R.id.caller4 };
133 R.id.callerPhoto);
135 R.id.conferenceCallerName);
137 R.id.conferenceCallerNumber);
139 R.id.conferenceCallerNumberType);
162 View endButton = mConferenceCallList[rowId].findViewById(R.id
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DPagedViewWidget.java76 final ImageView image = (ImageView) findViewById(R.id.widget_preview);
85 TextView name = (TextView) findViewById(R.id.widget_name);
89 TextView dims = (TextView) findViewById(R.id.widget_dims);
108 final ImageView image = (ImageView) findViewById(R.id.widget_preview);
127 final ImageView image = (ImageView) findViewById(R.id.widget_preview);
131 final TextView name = (TextView) findViewById(R.id.widget_name);
133 final TextView dims = (TextView) findViewById(R.id.widget_dims);
147 final TextView name = (TextView) findViewById(R.id.widget_name);
149 final TextView dims = (TextView) findViewById(R.id.widget_dims);
157 final ImageView i = (ImageView) findViewById(R.id
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DConversationListItem.java83 mFromView = (TextView) findViewById(R.id.from);
84 mSubjectView = (TextView) findViewById(R.id.subject);
86 mDateView = (TextView) findViewById(R.id.date);
87 mAttachmentView = findViewById(R.id.attachment);
88 mErrorIndicator = findViewById(R.id.error);
89 mAvatarView = (QuickContactBadge) findViewById(R.id.avatar);
188 attachmentLayout.addRule(RelativeLayout.LEFT_OF, R.id.error);
190 attachmentLayout.addRule(RelativeLayout.LEFT_OF, R.id.date);
214 subjectLayout.addRule(RelativeLayout.LEFT_OF, hasAttachment ? R.id.attachment :
215 (hasError ? R.id
[all...]

Completed in 7137 milliseconds

1234567891011>>