Searched defs:bundle (Results 26 - 41 of 41) sorted by relevance

12

/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
H A DRawContactModifier.java881 private static void fixupLegacyImType(Bundle bundle) { argument
882 final String encodedString = bundle.getString(Insert.IM_PROTOCOL);
889 bundle.putInt(Insert.IM_PROTOCOL, (Integer)protocol);
891 bundle.putString(Insert.IM_PROTOCOL, (String)protocol);
/packages/apps/Email/src/com/android/email/activity/setup/
H A DMailboxSettings.java194 public Loader<Cursor> onCreateLoader(int i, Bundle bundle) { argument
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
H A DTransitionImage.java198 public boolean readFromBundle(Context context, Rect intentSourceBounds, Bundle bundle) { argument
200 if (bundle == null) {
203 mUri = bundle.getParcelable(EXTRA_TRANSITION_BITMAP_URI);
215 if (bundle.containsKey(EXTRA_TRANSITION_BITMAP)) {
218 bundle.getBundle(EXTRA_TRANSITION_BITMAP)));
225 String bitmapRectStr = bundle.getString(EXTRA_TRANSITION_BITMAP_RECT);
237 if (!readRectF(bundle.getFloatArray(EXTRA_TRANSITION_BITMAP_CLIPPED_RECT),
241 if (!readRectF(bundle.getFloatArray(EXTRA_TRANSITION_BITMAP_UNCLIPPED_RECT),
245 setAlpha(bundle.getFloat(EXTRA_TRANSITION_BITMAP_ALPHA, 1f));
246 setSaturation(bundle
251 writeToBundle(Bundle bundle) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DActivityController.java142 * @param bundle
145 Dialog onCreateDialog(int id, Bundle bundle); argument
185 * @param bundle
187 void onPrepareDialog(int id, Dialog dialog, Bundle bundle); argument
H A DMailActivity.java238 public Dialog onCreateDialog(int id, Bundle bundle) { argument
239 final Dialog dialog = mController.onCreateDialog(id, bundle);
240 return dialog == null ? super.onCreateDialog(id, bundle) : dialog;
265 public void onPrepareDialog(int id, Dialog dialog, Bundle bundle) { argument
266 super.onPrepareDialog(id, dialog, bundle);
267 mController.onPrepareDialog(id, dialog, bundle);
H A DAbstractActivityController.java175 /** Key to store an account in a bundle */
177 /** Key to store a folder in a bundle */
1418 public Dialog onCreateDialog(int id, Bundle bundle) { argument
2053 public void onPrepareDialog(int id, Dialog dialog, Bundle bundle) { argument
2284 * Restore the state from the previous bundle. Subclasses should call this
2436 * Copy any selected conversations stored in the saved bundle into our selection set,
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DLabeledEditorView.java484 Bundle bundle = new Bundle();
485 bundle.putInt(DIALOG_ID_KEY, bundleDialogId);
486 getDialogManager().showDialogInView(this, bundle);
503 public Dialog createDialog(Bundle bundle) { argument
504 if (bundle == null) throw new IllegalArgumentException("bundle must not be null");
505 int dialogId = bundle.getInt(DIALOG_ID_KEY);
/packages/apps/DeskClock/src/com/android/deskclock/worldclock/
H A DCitiesActivity.java468 public void onSaveInstanceState(Bundle bundle) { argument
469 super.onSaveInstanceState(bundle);
470 bundle.putString(KEY_SEARCH_QUERY, mQueryTextBuffer.toString());
471 bundle.putBoolean(KEY_SEARCH_MODE, mSearchMode);
472 bundle.putInt(KEY_LIST_POSITION, mCitiesList.getFirstVisiblePosition());
/packages/apps/Browser/src/com/android/browser/
H A DAddBookmarkPage.java759 Bundle bundle = mMessage.getData();
760 String title = bundle.getString(BrowserContract.Bookmarks.TITLE);
761 String url = bundle.getString(BrowserContract.Bookmarks.URL);
762 boolean invalidateThumbnail = bundle.getBoolean(REMOVE_THUMBNAIL);
764 : (Bitmap) bundle.getParcelable(BrowserContract.Bookmarks.THUMBNAIL);
765 String touchIconUrl = bundle.getString(TOUCH_ICON_URL);
930 Bundle bundle = new Bundle();
931 bundle.putString(BrowserContract.Bookmarks.TITLE, title);
932 bundle.putString(BrowserContract.Bookmarks.URL, url);
933 bundle
1071 EditBookmarkInfoLoader(Context context, Bundle bundle) argument
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DImportVCardActivity.java826 protected void onCreate(Bundle bundle) { argument
827 super.onCreate(bundle);
892 protected Dialog onCreateDialog(int resId, Bundle bundle) { argument
976 return super.onCreateDialog(resId, bundle);
/packages/apps/Dialer/src/com/android/dialer/voicemail/
H A DVoicemailPlaybackPresenter.java110 * If present in the saved instance bundle, we should not resume playback on
116 * If present in the saved instance bundle, indicates where to set the
186 public void onCreate(Bundle bundle) { argument
356 // TODO: Now I'm ignoring the bundle, when previously I was checking for contains against
/packages/apps/Calendar/src/com/android/calendar/
H A DUtils.java2085 * @param bundle The incoming bundle that contains the reminder info.
2088 public static ArrayList<ReminderEntry> readRemindersFromBundle(Bundle bundle) { argument
2091 ArrayList<Integer> reminderMinutes = bundle.getIntegerArrayList(
2093 ArrayList<Integer> reminderMethods = bundle.getIntegerArrayList(
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
H A DMailbox.java53 * to set up an appropriate bundle, or read its contents.
92 final Bundle bundle = new Bundle(mailboxIds.size() + 1);
93 bundle.putInt(SYNC_EXTRA_MAILBOX_COUNT, mailboxIds.size());
95 bundle.putLong(formatMailboxIdExtra(i), mailboxIds.get(i));
97 return bundle;
101 final Bundle bundle = new Bundle(mailboxIds.length + 1);
102 bundle.putInt(SYNC_EXTRA_MAILBOX_COUNT, mailboxIds.length);
104 bundle.putLong(formatMailboxIdExtra(i), mailboxIds[i]);
106 return bundle;
110 final Bundle bundle
116 getMailboxIdsFromBundle(Bundle bundle) argument
136 isAccountOnlyExtras(Bundle bundle) argument
147 isPushOnlyExtras(Bundle bundle) argument
[all...]
/packages/apps/Mms/src/com/android/mms/data/
H A DWorkingMessage.java946 * @param bundle The Bundle passed in to onSaveInstanceState
948 public void writeStateToBundle(Bundle bundle) { argument
950 bundle.putString("subject", mSubject.toString());
954 bundle.putParcelable("msg_uri", mMessageUri);
956 bundle.putString("sms_body", mText.toString());
963 * @param bundle The Bundle passed in to onCreate
965 public void readStateFromBundle(Bundle bundle) { argument
966 if (bundle == null) {
970 String subject = bundle.getString("subject");
973 Uri uri = (Uri)bundle
[all...]
/packages/apps/Mms/src/com/android/mms/ui/
H A DComposeMessageActivity.java3868 private void initActivityState(Bundle bundle) { argument
3870 if (bundle != null) {
3872 String recipients = bundle.getString(RECIPIENTS);
3878 mSendDiscreetMode = bundle.getBoolean(KEY_EXIT_ON_SENT, false);
3879 mForwardMessageMode = bundle.getBoolean(KEY_FORWARDED_MESSAGE, false);
3884 mWorkingMessage.readStateFromBundle(bundle);
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DComposeActivity.java211 // the previously instantiated map. If ComposeActivity.onCreate() is called, with a bundle
1000 // restores the contents of the edit text. That's a lot of text to put in a bundle so we do
1148 private void initFromSpinner(Bundle bundle, int action) { argument
1154 if (bundle != null) {
1155 if (bundle.containsKey(EXTRA_SELECTED_REPLY_FROM_ACCOUNT)) {
1157 bundle.getString(EXTRA_SELECTED_REPLY_FROM_ACCOUNT));
1158 } else if (bundle.containsKey(EXTRA_FROM_ACCOUNT_STRING)) {
1159 final String accountString = bundle.getString(EXTRA_FROM_ACCOUNT_STRING);
2566 // Copy all of the values from the content values to the bundle
2587 // If the SendOrSaveMessage has some opened fds, add them to the bundle
[all...]

Completed in 2997 milliseconds

12