Searched refs:id (Results 101 - 125 of 1112) sorted by relevance

1234567891011>>

/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
H A DStockSource.java51 albumData.id = ALBUM_ID;
58 imageData.id = Integer.toString(i);
86 log(TAG, "opening:" + data.id);
87 int idx = Integer.valueOf(data.id);
99 int idx = Integer.valueOf(current.id);
106 int idx = Integer.valueOf(current.id);
H A DPhotoTableDream.java31 BummerView bummer = (BummerView) findViewById(R.id.bummer);
39 PhotoTable table = (PhotoTable) findViewById(R.id.table);
/packages/apps/Phone/src/com/android/phone/
H A DManageConferenceUtils.java49 * This object listens for results from the caller-id info queries we
74 (TextView) viewGroup.findViewById(R.id.conferenceCallerName),
75 (TextView) viewGroup.findViewById(R.id.conferenceCallerNumberType),
76 (TextView) viewGroup.findViewById(R.id.conferenceCallerNumber));
105 ViewStub stub = (ViewStub) mInCallScreen.findViewById(R.id.manageConferencePanelStub);
109 (ViewGroup) mInCallScreen.findViewById(R.id.manageConferencePanel);
116 (Chronometer) mInCallScreen.findViewById(R.id.manageConferencePanelHeader);
122 final int[] viewGroupIdList = { R.id.caller0, R.id.caller1, R.id
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DEffectSettingPopup.java70 mClearEffects = findViewById(R.id.clear_effects);
72 mSillyFacesGrid = (GridView) findViewById(R.id.effect_silly_faces);
73 mBackgroundGrid = (GridView) findViewById(R.id.effect_background);
108 findViewById(R.id.effect_silly_faces_title).setVisibility(View.VISIBLE);
109 findViewById(R.id.effect_silly_faces_title_separator).setVisibility(View.VISIBLE);
114 new int[] {R.id.text, R.id.image});
120 findViewById(R.id.effect_background_separator).setVisibility(View.VISIBLE);
125 findViewById(R.id.effect_background_title).setVisibility(View.VISIBLE);
126 findViewById(R.id
186 onItemClick(AdapterView<?> parent, View view, int index, long id) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactsUnavailableFragment.java64 mMessageView = (TextView) mView.findViewById(R.id.message);
65 mSecondaryMessageView = (TextView) mView.findViewById(R.id.secondary_message);
66 mCreateContactButton = (Button) mView.findViewById(R.id.create_contact_button);
68 mAddAccountButton = (Button) mView.findViewById(R.id.add_account_button);
70 mImportContactsButton = (Button) mView.findViewById(R.id.import_contacts_button);
72 mUninstallAppsButton = (Button) mView.findViewById(R.id.import_failure_uninstall_button);
74 mRetryUpgradeButton = (Button) mView.findViewById(R.id.import_failure_retry_button);
76 mProgress = (ProgressBar) mView.findViewById(R.id.progress);
153 case R.id.create_contact_button:
156 case R.id
[all...]
/packages/apps/Gallery2/src/com/android/camera/ui/
H A DEffectSettingPopup.java70 mClearEffects = findViewById(R.id.clear_effects);
72 mSillyFacesGrid = (GridView) findViewById(R.id.effect_silly_faces);
73 mBackgroundGrid = (GridView) findViewById(R.id.effect_background);
108 findViewById(R.id.effect_silly_faces_title).setVisibility(View.VISIBLE);
109 findViewById(R.id.effect_silly_faces_title_separator).setVisibility(View.VISIBLE);
114 new int[] {R.id.text, R.id.image});
120 findViewById(R.id.effect_background_separator).setVisibility(View.VISIBLE);
125 findViewById(R.id.effect_background_title).setVisibility(View.VISIBLE);
126 findViewById(R.id
186 onItemClick(AdapterView<?> parent, View view, int index, long id) argument
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DPopupList.java45 public final int id; field in class:PopupList.Item
48 public Item(int id, String title) { argument
49 this.id = id;
78 public void addItem(int id, String title) { argument
79 mItems.add(new Item(id, title));
105 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
109 mOnPopupItemClickListener.onPopupItemClick((int) id);
172 public Item findItem(int id) { argument
174 if (item.id
[all...]
/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DEffectSettingPopup.java68 mClearEffects = findViewById(R.id.clear_effects);
70 mSillyFacesGrid = (GridView) findViewById(R.id.effect_silly_faces);
71 mBackgroundGrid = (GridView) findViewById(R.id.effect_background);
106 findViewById(R.id.effect_silly_faces_title).setVisibility(View.VISIBLE);
107 findViewById(R.id.effect_silly_faces_title_separator).setVisibility(View.VISIBLE);
112 new int[] {R.id.text, R.id.image});
118 findViewById(R.id.effect_background_separator).setVisibility(View.VISIBLE);
123 findViewById(R.id.effect_background_title).setVisibility(View.VISIBLE);
124 findViewById(R.id
183 onItemClick(AdapterView<?> parent, View view, int index, long id) argument
[all...]
/packages/apps/Music/src/com/android/music/
H A DMediaAppWidgetProvider.java70 views.setViewVisibility(R.id.title, View.GONE);
71 views.setTextViewText(R.id.artist, res.getText(R.string.widget_initial_text));
141 views.setViewVisibility(R.id.title, View.GONE);
142 views.setTextViewText(R.id.artist, errorState);
146 views.setViewVisibility(R.id.title, View.VISIBLE);
147 views.setTextViewText(R.id.title, titleName);
148 views.setTextViewText(R.id.artist, artistName);
154 views.setImageViewResource(R.id.control_play, R.drawable.ic_appwidget_music_pause);
156 views.setImageViewResource(R.id.control_play, R.drawable.ic_appwidget_music_play);
183 views.setOnClickPendingIntent(R.id
[all...]
/packages/apps/Browser/src/com/android/browser/
H A DTabControl.java175 throw new IllegalStateException("Tab with id " + tab.getId() + " already exists: "
293 * for each tab id, save the tab state
337 * current tab id is returned. This can be passed to restoreState below
352 for (long id : ids) {
353 if (hasState(id, inState) && !isIncognito(id, inState)) {
354 current = id;
362 private boolean hasState(long id, Bundle state) { argument
363 if (id == -1) return false;
364 Bundle tab = state.getBundle(Long.toString(id));
368 isIncognito(long id, Bundle state) argument
551 getTabFromAppId(String id) argument
[all...]
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAlarmClock.java129 mAlarmsList = (SwipeableListView) findViewById(R.id.alarms_list);
147 mAdapter.removeSelectedId(itemHolder.alarm.id);
160 mUndoBar = (ActionableToastBar) findViewById(R.id.undo_bar);
233 case R.id.menu_item_settings:
236 case R.id.menu_item_add_alarm:
239 case R.id.menu_item_delete_alarm:
244 case android.R.id.home:
259 MenuItem help = menu.findItem(R.id.menu_item_help);
284 mScrollToAlarmId = alarm.id;
309 public Loader<Cursor> onCreateLoader(int id, Bundl argument
544 removeSelectedId(int id) argument
1061 getViewById(int id) argument
[all...]
/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/ContactsCommon/src/com/android/contacts/common/list/
H A DContactTileView.java58 mName = (TextView) findViewById(R.id.contact_tile_name);
60 mQuickContact = (QuickContactBadge) findViewById(R.id.contact_tile_quick);
61 mPhoto = (ImageView) findViewById(R.id.contact_tile_image);
62 mStatus = (TextView) findViewById(R.id.contact_tile_status);
63 mPhoneLabel = (TextView) findViewById(R.id.contact_tile_phone_type);
64 mPhoneNumber = (TextView) findViewById(R.id.contact_tile_phone_number);
65 mPushState = findViewById(R.id.contact_tile_push_state);
66 mHorizontalDivider = findViewById(R.id.contact_tile_horizontal_divider);
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
H A DCityObj.java31 public CityObj(String name, String timezone, String id) { argument
34 mCityId = id;
42 ", id=" + mCityId +
/packages/apps/Email/src/com/android/email/activity/setup/
H A DAccountSetupAccountType.java59 UiUtilities.getView(this, R.id.pop).setOnClickListener(this);
60 UiUtilities.getView(this, R.id.imap).setOnClickListener(this);
61 final Button exchangeButton = (Button) UiUtilities.getView(this, R.id.exchange);
63 final Button previousButton = (Button) findViewById(R.id.previous); // xlarge only
134 case R.id.pop:
137 case R.id.imap:
140 case R.id.exchange:
143 case R.id.previous:
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
H A DEditorPanel.java78 View actionControl = mMainView.findViewById(R.id.panelAccessoryViewList);
79 View editControl = mMainView.findViewById(R.id.controlArea);
80 ImageButton cancelButton = (ImageButton) mMainView.findViewById(R.id.cancelFilter);
81 ImageButton applyButton = (ImageButton) mMainView.findViewById(R.id.applyFilter);
82 Button editTitle = (Button) mMainView.findViewById(R.id.applyEffect);
100 Button toggleState = (Button) mMainView.findViewById(R.id.toggle_state);
125 if (mMainView.findViewById(R.id.state_panel_container) == null) {
136 transaction.replace(R.id.state_panel_container, statePanel, StatePanel.FRAGMENT_TAG);
/packages/apps/Phone/tests/src/com/android/phone/tests/
H A DOtaspTestActivity.java64 mLabel = (TextView) findViewById(R.id.label1);
67 mProgressBar = (ProgressBar) findViewById(R.id.progress_bar);
68 mResult = (TextView) findViewById(R.id.result1);
70 mButton = (Button) findViewById(R.id.button1);
204 int id = view.getId();
205 Log.i(LOG_TAG, "onClick(View " + view + ", id " + id + ")...");
207 switch (id) {
208 case R.id.button1:
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockTask.java29 public MockTask(String name, int id) { argument
31 mId = id;
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiSettingsForSetupWizardXL.java149 (WifiSettings)getFragmentManager().findFragmentById(R.id.wifi_setup_fragment);
163 final View layoutRoot = findViewById(R.id.layout_root);
173 mTitleView = (TextView)findViewById(R.id.wifi_setup_title);
174 mProgressBar = (ProgressBar)findViewById(R.id.scanning_progress_bar);
176 mTopDividerNoProgress = findViewById(R.id.top_divider_no_progress);
177 mBottomPadding = findViewById(R.id.bottom_padding);
183 mAddNetworkButton = (Button)findViewById(R.id.wifi_setup_add_network);
185 mRefreshButton = (Button)findViewById(R.id.wifi_setup_refresh_list);
187 mSkipOrNextButton = (Button)findViewById(R.id.wifi_setup_skip_or_next);
189 mConnectButton = (Button)findViewById(R.id
[all...]
/packages/apps/VideoEditor/src/com/android/videoeditor/
H A DOverlayTitleEditor.java78 mOverlayImageView = (ImageView) findViewById(R.id.overlay_preview);
81 R.id.overlay_change_title_template);
89 mTitleView = (TextView) findViewById(R.id.overlay_title);
92 mSubtitleView = (TextView) findViewById(R.id.overlay_subtitle);
153 case R.id.overlay_ok: {
164 final TextView titleView = (TextView) findViewById(R.id.overlay_title);
165 final TextView subTitleView = (TextView) findViewById(R.id.overlay_subtitle);
175 case R.id.overlay_cancel: {
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
H A Ddic_node_state_output.h61 int getCodePointAt(const int id) const {
62 return mWordBuf[id];
/packages/apps/Calculator/src/com/android/calculator2/
H A DCalculator.java68 mPager = (ViewPager) findViewById(R.id.panelswitch);
81 mClearButton = findViewById(R.id.clear);
86 mBackspaceButton = findViewById(R.id.del);
96 mDisplay = (CalculatorDisplay) findViewById(R.id.display);
132 void setOnClickListener(View root, int id) { argument
133 final View target = root != null ? root.findViewById(id) : findViewById(id);
147 menu.findItem(R.id.basic).setVisible(!getBasicVisibility());
148 menu.findItem(R.id.advanced).setVisible(!getAdvancedVisibility());
154 mOverflowMenuButton = findViewById(R.id
[all...]
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DVideoObject.java34 * two thumbnail bitmaps as well as other information such as the id, and the
42 * @param id the image id of the image
46 long id, int index, Uri uri, String dataPath,
48 super(container, cr, id, index, uri, dataPath,
111 long id = mId;
113 id, Images.Thumbnails.MICRO_KIND, null, true);
45 VideoObject(BaseImageList container, ContentResolver cr, long id, int index, Uri uri, String dataPath, String mimeType, long dateTaken, String title) argument
/packages/apps/Mms/src/com/android/mms/dom/smil/
H A DSmilElementImpl.java42 public void setId(String id) throws DOMException { argument
/packages/apps/Settings/src/com/android/settings/
H A DDateTimeSettingsSetupWizard.java89 mUsingXLargeLayout = findViewById(R.id.time_zone_button) != null;
93 findViewById(R.id.next_button).setOnClickListener(this);
104 final View layoutRoot = findViewById(R.id.layout_root);
114 mAutoTimeZoneButton = (CompoundButton)findViewById(R.id.time_zone_auto);
122 mTimeZoneButton = (Button)findViewById(R.id.time_zone_button);
135 mAutoDateTimeButton = (CompoundButton)findViewById(R.id.date_time_auto_button);
139 mTimePicker = (TimePicker)findViewById(R.id.time_picker);
141 mDatePicker = (DatePicker)findViewById(R.id.date_picker);
147 ((Button)findViewById(R.id.next_button)).setOnClickListener(this);
148 final Button skipButton = (Button)findViewById(R.id
239 onItemClick(AdapterView<?> parent, View view, int position, long id) argument
[all...]

Completed in 1728 milliseconds

1234567891011>>