Searched refs:bundle (Results 51 - 75 of 230) sorted by relevance

12345678910

/packages/apps/Contacts/src/com/android/contacts/vcard/
H A DSelectAccountActivity.java52 protected void onCreate(Bundle bundle) { argument
53 super.onCreate(bundle);
100 protected Dialog onCreateDialog(int resId, Bundle bundle) { argument
110 return super.onCreateDialog(resId, bundle);
/packages/services/Car/car-lib/src/android/car/cluster/renderer/
H A DNavigationRenderer.java46 public void onEvent(int eventType, Bundle bundle) {} argument
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/touch/
H A DTouchTestFragment.java30 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle) { argument
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectCalendarsSyncFragment.java92 public SelectCalendarsSyncFragment(Bundle bundle) { argument
93 mAccount = new Account(bundle.getString(Calendars.ACCOUNT_NAME),
94 bundle.getString(Calendars.ACCOUNT_TYPE));
148 Bundle bundle = getArguments();
149 if (bundle != null && bundle.containsKey(Calendars.ACCOUNT_NAME)
150 && bundle.containsKey(Calendars.ACCOUNT_TYPE)) {
151 mAccount = new Account(bundle.getString(Calendars.ACCOUNT_NAME),
152 bundle.getString(Calendars.ACCOUNT_TYPE));
/packages/apps/Dialer/java/com/android/dialer/app/settings/
H A DDialerSettingsActivity.java166 Bundle bundle = new Bundle();
167 bundle.putString(
169 bundle.putString(
172 bundle.putBundle(PhoneAccountSelectionFragment.PARAM_ARGUMENTS, new Bundle());
173 bundle.putInt(
175 voicemailSettings.fragmentArguments = bundle;
181 Bundle bundle = new Bundle();
182 bundle.putParcelable(VoicemailClient.PARAM_PHONE_ACCOUNT_HANDLE, soleAccount);
183 voicemailSettings.fragmentArguments = bundle;
/packages/services/Telephony/src/com/android/phone/
H A DGsmUmtsCallForwardOptions.java111 Bundle bundle = mIcicle.getParcelable(pref.getKey());
112 pref.setToggled(bundle.getBoolean(KEY_TOGGLE));
114 cf.number = bundle.getString(KEY_NUMBER);
115 cf.status = bundle.getInt(KEY_STATUS);
130 Bundle bundle = new Bundle();
131 bundle.putBoolean(KEY_TOGGLE, pref.isToggled());
133 bundle.putString(KEY_NUMBER, pref.callForwardInfo.number);
134 bundle.putInt(KEY_STATUS, pref.callForwardInfo.status);
136 outState.putParcelable(pref.getKey(), bundle);
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DCertInstallerMain.java85 Bundle bundle = intent.getExtras();
95 if (bundle != null && !installAsUserClassName.equals(calledClass)) {
96 bundle.remove(Credentials.EXTRA_INSTALL_AS_UID);
99 // If bundle is empty of any actual credentials, ask user to open.
102 if (bundle == null
103 || bundle.isEmpty()
104 || (bundle.size() == 1
105 && (bundle.containsKey(KeyChain.EXTRA_NAME)
106 || bundle.containsKey(Credentials.EXTRA_INSTALL_AS_UID)))) {
/packages/services/Car/car-cluster-logging-renderer/src/android/car/cluster/loggingrenderer/
H A DLoggingClusterRenderingService.java75 public void onEvent(int eventType, Bundle bundle) {
76 Log.i(TAG, "onEvent, eventType: " + eventType + ", bundle: " + bundle);
/packages/services/Telecomm/src/com/android/server/telecom/components/
H A DUserCallActivity.java54 protected void onCreate(Bundle bundle) { argument
55 super.onCreate(bundle);
63 // TODO: Figure out if there is something to restore from bundle.
/packages/apps/Dialer/java/com/android/incallui/spam/
H A DSpamNotificationActivity.java113 Context context, Bundle bundle, DialerImpression.Type impression) {
117 bundle.getString(CALL_INFO_KEY_CALL_ID),
118 bundle.getLong(CALL_INFO_KEY_START_TIME_MILLIS, 0));
122 Bundle bundle = new Bundle();
123 bundle.putString(CALL_INFO_KEY_PHONE_NUMBER, call.getNumber());
124 bundle.putBoolean(CALL_INFO_KEY_IS_SPAM, call.isSpam());
125 bundle.putString(CALL_INFO_KEY_CALL_ID, call.getUniqueCallId());
126 bundle.putLong(CALL_INFO_KEY_START_TIME_MILLIS, call.getTimeAddedMs());
127 bundle.putInt(
129 return bundle;
112 logCallImpression( Context context, Bundle bundle, DialerImpression.Type impression) argument
330 newInstance(Bundle bundle) argument
416 newInstance(Bundle bundle) argument
[all...]
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
H A DBluetoothDetailFragment.java62 Bundle bundle = ListSettingsFragment.getBundle();
63 bundle.putParcelable(EXTRA_BT_DEVICE, btDevice);
64 bundle.putInt(EXTRA_TITLE_ID, R.string.bluetooth_settings);
65 bundle.putInt(EXTRA_ACTION_BAR_LAYOUT, R.layout.action_bar_with_button);
66 bluetoothDetailFragment.setArguments(bundle);
/packages/apps/Car/Settings/src/com/android/car/settings/users/
H A DUserDetailsSettingsFragment.java51 Bundle bundle = ListSettingsFragment.getBundle();
52 bundle.putInt(EXTRA_ACTION_BAR_LAYOUT, R.layout.action_bar_with_button);
53 bundle.putInt(EXTRA_TITLE_ID, R.string.user_settings_details_title);
54 bundle.putParcelable(EXTRA_USER_INFO, userInfo);
55 userSettingsFragment.setArguments(bundle);
/packages/apps/Car/Settings/src/com/android/car/settings/wifi/
H A DWifiDetailFragment.java69 Bundle bundle = ListSettingsFragment.getBundle();
70 bundle.putInt(EXTRA_TITLE_ID, R.string.wifi_settings);
71 bundle.putInt(EXTRA_ACTION_BAR_LAYOUT, R.layout.action_bar_with_button);
74 bundle.putBundle(EXTRA_AP_STATE, accessPointState);
75 wifiDetailFragment.setArguments(bundle);
H A DWifiSettingsFragment.java52 Bundle bundle = BaseFragment.getBundle();
53 bundle.putInt(EXTRA_TITLE_ID, R.string.wifi_settings);
54 bundle.putInt(EXTRA_LAYOUT, R.layout.wifi_list);
55 bundle.putInt(EXTRA_ACTION_BAR_LAYOUT, R.layout.action_bar_with_toggle);
56 wifiSettingsFragment.setArguments(bundle);
/packages/apps/Dialer/java/com/android/incallui/incall/impl/
H A DInCallButtonGridFragment.java46 public void onCreate(@Nullable Bundle bundle) { argument
47 super.onCreate(bundle);
55 LayoutInflater inflater, @Nullable ViewGroup parent, @Nullable Bundle bundle) {
69 public void onViewCreated(View view, @Nullable Bundle bundle) { argument
70 super.onViewCreated(view, bundle);
54 onCreateView( LayoutInflater inflater, @Nullable ViewGroup parent, @Nullable Bundle bundle) argument
/packages/apps/Dialer/java/com/android/voicemail/impl/
H A DTelephonyVvmConfigManager.java78 PersistableBundle bundle = (PersistableBundle) object;
80 if (bundle.containsKey(KEY_FEATURE_FLAG_NAME)
82 .getBoolean(bundle.getString(KEY_FEATURE_FLAG_NAME), false)) {
86 String[] mccMncs = bundle.getStringArray(KEY_MCCMNC);
91 configs.put(mccMnc, bundle);
/packages/apps/Gallery2/src/com/android/gallery3d/app/
H A DWallpaper.java55 protected void onCreate(Bundle bundle) { argument
56 super.onCreate(bundle);
57 if (bundle != null) {
58 mState = bundle.getInt(KEY_STATE);
59 mPickedItem = (Uri) bundle.getParcelable(KEY_PICKED_ITEM);
H A DStateManager.java40 private static final String KEY_STATE = "bundle";
272 Bundle bundle = (Bundle) parcelable;
274 (Class<? extends ActivityState>) bundle.getSerializable(KEY_CLASS);
276 Bundle data = bundle.getBundle(KEY_DATA);
277 Bundle state = bundle.getBundle(KEY_STATE);
303 Bundle bundle = new Bundle();
304 bundle.putSerializable(KEY_CLASS, entry.activityState.getClass());
305 bundle.putBundle(KEY_DATA, entry.data);
308 bundle.putBundle(KEY_STATE, state);
310 list[i++] = bundle;
[all...]
/packages/apps/ManagedProvisioning/tests/instrumentation/src/com/android/managedprovisioning/parser/
H A DDisclaimersParserTest.java116 Bundle bundle = new Bundle();
117 bundle.putString(EXTRA_PROVISIONING_DISCLAIMER_HEADER, DISCLAIMER_HEADER_1);
118 assertNull(mDisclaimersParser.parse(new Bundle[] { bundle }));
123 Bundle bundle = new Bundle();
124 bundle.putString(EXTRA_PROVISIONING_DISCLAIMER_HEADER, DISCLAIMER_HEADER_1);
125 bundle.putParcelable(EXTRA_PROVISIONING_DISCLAIMER_CONTENT, DISCLAIMER_URI_1);
127 DisclaimersParam disclaimers = mDisclaimersParser.parse(new Bundle[] { bundle });
/packages/apps/Settings/src/com/android/settings/support/
H A DSupportDisclaimerDialogFragment.java57 final Bundle bundle = new Bundle(2);
58 bundle.putParcelable(SupportDisclaimerDialogFragment.EXTRA_ACCOUNT, account);
59 bundle.putInt(SupportDisclaimerDialogFragment.EXTRA_TYPE, type);
60 fragment.setArguments(bundle);
102 final Bundle bundle = getArguments();
110 bundle.getParcelable(EXTRA_ACCOUNT), bundle.getInt(EXTRA_TYPE));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DFastScrollingIndexCache.java168 Bundle bundle = new Bundle();
169 bundle.putStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, titles);
170 bundle.putIntArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS, counts);
171 return bundle;
237 String countExpression, Bundle bundle) {
243 bundle.getStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES),
244 bundle.getIntArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS)));
236 put(Uri queryUri, String selection, String[] selectionArgs, String sortOrder, String countExpression, Bundle bundle) argument
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
H A DDialogActivity.java196 Bundle bundle = getIntent().getExtras();
197 if (bundle != null) {
198 boolean createFragmentFromExtra = bundle.getBoolean(EXTRA_CREATE_FRAGMENT_FROM_EXTRA);
200 // If intent bundle is not null, and flag indicates that should create fragments,
201 // set ContentFragment and ActionFragment using bundle extras.
202 String title = bundle.getString(EXTRA_DIALOG_TITLE);
203 String breadcrumb = bundle.getString(EXTRA_DIALOG_BREADCRUMB);
204 String description = bundle.getString(EXTRA_DIALOG_DESCRIPTION);
205 String imageUriStr = bundle.getString(EXTRA_DIALOG_IMAGE_URI);
207 int backgroundColor = bundle
[all...]
/packages/apps/Camera2/src/com/android/camera/util/
H A DQuickActivity.java108 protected final void onCreate(Bundle bundle) { argument
112 super.onCreate(bundle);
114 onCreateTasks(bundle);
/packages/apps/Car/Settings/src/com/android/car/settings/common/
H A DBaseFragment.java74 Bundle bundle = new Bundle();
75 bundle.putInt(EXTRA_ACTION_BAR_LAYOUT, R.layout.action_bar);
76 return bundle;
/packages/apps/Contacts/src/com/android/contacts/
H A DNonPhoneActivity.java56 Bundle bundle = new Bundle();
57 bundle.putString(PHONE_NUMBER_KEY, phoneNumber);
58 fragment.setArguments(bundle);

Completed in 654 milliseconds

12345678910