Searched refs:bundle (Results 151 - 175 of 230) sorted by relevance

12345678910

/packages/apps/Contacts/src/com/android/contacts/editor/
H A DLabeledEditorView.java534 Bundle bundle = new Bundle();
535 bundle.putInt(DIALOG_ID_KEY, bundleDialogId);
536 getDialogManager().showDialogInView(this, bundle);
553 public Dialog createDialog(Bundle bundle) { argument
554 if (bundle == null) throw new IllegalArgumentException("bundle must not be null");
555 int dialogId = bundle.getInt(DIALOG_ID_KEY);
/packages/apps/Dialer/java/com/android/dialer/interactions/
H A DPhoneNumberInteraction.java505 Bundle bundle = new Bundle();
506 bundle.putParcelableArrayList(ARG_PHONE_LIST, phoneList);
507 bundle.putInt(ARG_INTERACTION_TYPE, interactionType);
508 bundle.putBoolean(ARG_IS_VIDEO_CALL, isVideoCall);
509 CallIntentParser.putCallSpecificAppData(bundle, callSpecificAppData);
510 fragment.setArguments(bundle);
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/
H A DAdvancedPowerUsageDetailTest.java395 Bundle bundle = new Bundle(4);
396 bundle.putLong(AdvancedPowerUsageDetail.EXTRA_BACKGROUND_TIME, BACKGROUND_TIME_MS);
397 bundle.putLong(AdvancedPowerUsageDetail.EXTRA_FOREGROUND_TIME, FOREGROUND_TIME_MS);
398 bundle.putString(AdvancedPowerUsageDetail.EXTRA_POWER_USAGE_PERCENT, USAGE_PERCENT);
399 bundle.putInt(AdvancedPowerUsageDetail.EXTRA_POWER_USAGE_AMOUNT, POWER_MAH);
400 doReturn(bundle).when(mFragment).getArguments();
/packages/apps/Camera2/src/com/android/camera/settings/
H A DCameraSettingsActivity.java120 Bundle bundle = new Bundle(1);
121 bundle.putString(PREF_SCREEN_EXTRA, prefKey);
122 bundle.putBoolean(HIDE_ADVANCED_SCREEN, hideAdvancedScreen);
123 dialog.setArguments(bundle);
/packages/apps/DeskClock/src/com/android/deskclock/
H A DAsyncRingtonePlayer.java117 final Bundle bundle = new Bundle();
118 bundle.putParcelable(RINGTONE_URI_KEY, ringtoneUri);
119 bundle.putLong(CRESCENDO_DURATION_KEY, crescendoDuration);
120 message.setData(bundle);
/packages/apps/Dialer/java/com/android/dialer/callcomposer/
H A DCameraComposerFragment.java88 LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle bundle) {
124 if (bundle != null) {
125 cameraDirection = bundle.getInt(CAMERA_DIRECTION_KEY);
126 cameraUri = bundle.getParcelable(CAMERA_URI_KEY);
87 onCreateView( LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle bundle) argument
/packages/apps/Dialer/java/com/android/incallui/hold/
H A DOnHoldFragment.java54 LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, @Nullable Bundle bundle) {
53 onCreateView( LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, @Nullable Bundle bundle) argument
/packages/apps/Contacts/src/com/android/contacts/list/
H A DMultiSelectEmailAddressesListAdapter.java82 public void setArguments(Bundle bundle) { argument
83 mContactIdsFilter = bundle.getLongArray(UiIntentActions.SELECTION_ITEM_LIST);
H A DMultiSelectPhoneNumbersListAdapter.java82 public void setArguments(Bundle bundle) { argument
83 mContactIdsFilter = bundle.getLongArray(UiIntentActions.SELECTION_ITEM_LIST);
H A DContactEntryListAdapter.java497 Bundle bundle = cursor.getExtras();
498 if (bundle.containsKey(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES) &&
499 bundle.containsKey(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS)) {
501 bundle.getStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES);
502 int counts[] = bundle.getIntArray(
/packages/apps/Email/provider_src/com/android/email/provider/
H A DFolderPickerActivity.java51 public void onCreate(Bundle bundle) { argument
52 super.onCreate(bundle);
/packages/services/Car/car-lib/src/android/car/cluster/renderer/
H A DInstrumentClusterRenderingService.java270 public void onEvent(int eventType, Bundle bundle) throws RemoteException { argument
272 mNavigationRenderer.onEvent(eventType, bundle);
/packages/apps/Dialer/java/com/android/contacts/common/list/
H A DContactEntryListAdapter.java478 Bundle bundle = cursor.getExtras();
479 if (bundle.containsKey(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES)
480 && bundle.containsKey(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS)) {
481 String[] sections = bundle.getStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES);
482 int[] counts = bundle.getIntArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS);
/packages/apps/Settings/src/com/android/settings/
H A DUtils.java720 * Lookup both {@link Intent#EXTRA_USER} and {@link Intent#EXTRA_USER_ID} in the bundle
723 private static @Nullable UserHandle getUserHandleFromBundle(Bundle bundle) { argument
724 if (bundle == null) {
727 final UserHandle user = bundle.getParcelable(EXTRA_USER);
731 final int userId = bundle.getInt(EXTRA_USER_ID, -1);
1001 * Returns the user id present in the bundle with {@link Intent#EXTRA_USER_ID} if it
1006 public static int getUserIdFromBundle(Context context, Bundle bundle) { argument
1007 if (bundle == null) {
1010 int userId = bundle.getInt(Intent.EXTRA_USER_ID, UserHandle.myUserId());
1272 * Tries to initalize a volume with the given bundle
1276 maybeInitializeVolume(StorageManager sm, Bundle bundle) argument
[all...]
H A DWifiCallingSettings.java334 PersistableBundle bundle = configManager.getConfig();
335 if (bundle == null) return null;
337 String carrierApp = bundle.getString(
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupUtil.java251 public static void updateBundle(Bundle bundle, ContactsSectionIndexer indexer, argument
263 bundle.putStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, newSections);
265 bundle.putIntArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS, newCounts);
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
H A DUtils.java379 AccountManagerFuture<Bundle> bundle = accountManager.removeAccount(account,
382 if (bundle.getResult().getBoolean(AccountManager.KEY_BOOLEAN_RESULT, false)) {
385 Intent removeIntent = (Intent) bundle.getResult().getParcelable(
/packages/apps/Messaging/src/com/android/messaging/ui/appsettings/
H A DApnEditorActivity.java356 final Bundle bundle = new Bundle();
357 bundle.putString(ERROR_MESSAGE_KEY, getErrorMsg());
358 getActivity().showDialog(ERROR_DIALOG_ID, bundle);
/packages/apps/Settings/src/com/android/settings/location/
H A DSettingsInjector.java491 Bundle bundle = msg.getData();
492 boolean enabled = bundle.getBoolean(SettingInjectorService.ENABLED_KEY, true);
494 Log.d(TAG, setting + ": received " + msg + ", bundle: " + bundle);
/packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
H A DDeletionHelperSettings.java83 Bundle bundle = new Bundle(1);
84 bundle.putInt(THRESHOLD_KEY, thresholdType);
85 instance.setArguments(bundle);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DActionBarController.java158 final Bundle bundle = new Bundle(1);
159 bundle.putParcelable(UIProvider.SetCurrentAccountColumns.ACCOUNT, account);
161 updater.execute(bundle);
/packages/apps/Dialer/java/com/android/incallui/answer/impl/
H A DSmsBottomSheetFragment.java58 LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, @Nullable Bundle bundle) {
57 onCreateView( LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, @Nullable Bundle bundle) argument
/packages/apps/Dialer/java/com/android/incallui/audioroute/
H A DAudioRouteSelectorDialogFragment.java74 LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, @Nullable Bundle bundle) {
73 onCreateView( LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, @Nullable Bundle bundle) argument
/packages/apps/DocumentsUI/src/com/android/documentsui/
H A DOpenExternalDirectoryActivity.java303 final Bundle bundle;
305 bundle = provider.call("getDocIdForFileCreateNewDir", file.getPath(), null);
311 final String docId = bundle == null ? null : bundle.getString("DOC_ID");
/packages/apps/Email/provider_src/com/android/email/mail/store/
H A DImapStore.java489 Bundle bundle = new Bundle();
498 bundle.putString(EmailServiceProxy.VALIDATE_BUNDLE_ERROR_MESSAGE, ioe.getMessage());
503 bundle.putInt(EmailServiceProxy.VALIDATE_BUNDLE_RESULT_CODE, result);
504 return bundle;

Completed in 9632 milliseconds

12345678910