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

12

/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallActivity.java57 protected void onCreate(Bundle bundle) { argument
58 super.onCreate(bundle);
60 // TODO: Figure out if there is something to restore from bundle.
/packages/apps/Contacts/src/com/android/contacts/util/
H A DDialogManager.java65 * The View needs to have a valid and unique Id. This function modifies the bundle by adding a
68 public void showDialogInView(final View view, final Bundle bundle) { argument
70 if (bundle.containsKey(VIEW_ID_KEY)) {
76 bundle.putInt(VIEW_ID_KEY, viewId);
78 mActivity.showDialog(dialogId, bundle);
85 public Dialog onCreateDialog(final int id, final Bundle bundle) { argument
93 if (!bundle.containsKey(VIEW_ID_KEY)) {
96 final int viewId = bundle.getInt(VIEW_ID_KEY);
101 final Dialog dialog = ((DialogShowingView)view).createDialog(bundle);
123 Dialog createDialog(Bundle bundle); argument
[all...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
H A DSelectAccountActivity.java52 protected void onCreate(Bundle bundle) { argument
53 super.onCreate(bundle);
100 protected Dialog onCreateDialog(int resId, Bundle bundle) { argument
112 return super.onCreateDialog(resId, bundle);
H A DCancelActivity.java84 protected Dialog onCreateDialog(int id, Bundle bundle) { argument
112 return super.onCreateDialog(id, bundle);
H A DExportVCardActivity.java148 protected void onCreate(Bundle bundle) { argument
149 super.onCreate(bundle);
212 protected Dialog onCreateDialog(int id, Bundle bundle) { argument
252 return super.onCreateDialog(id, bundle);
H A DNfcImportVCardActivity.java149 protected void onCreate(Bundle bundle) { argument
150 super.onCreate(bundle);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
H A DActivityTransitionBitmapHelper.java51 public static Bitmap getBitmapFromBinderBundle(Bundle bundle) { argument
52 if (bundle.containsKey(EXTRA_BINDER)) {
58 binder = (IBinder) sGetBinder.invoke(bundle, EXTRA_BINDER);
81 Bundle bundle = new Bundle();
85 sPutBinder.invoke(bundle, EXTRA_BINDER, provider);
91 return bundle;
/packages/apps/UnifiedEmail/src/com/android/mail/
H A DConversationListContext.java65 * De-serializes a context from a bundle.
67 public static ConversationListContext forBundle(Bundle bundle) { argument
70 Account account = bundle.getParcelable(Utils.EXTRA_ACCOUNT);
71 Folder folder = bundle.getParcelable(Utils.EXTRA_FOLDER);
72 return new ConversationListContext(account, bundle.getString(EXTRA_SEARCH_QUERY), folder);
117 * Serializes the context to a bundle.
/packages/apps/Email/src/com/android/email2/ui/
H A DMailActivityEmail.java156 public void onCreate(Bundle bundle) { argument
179 super.onCreate(bundle);
/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasFolderSync.java202 * @param bundle The {@link Bundle} to return to the RPC.
205 private void writeResultCode(final Bundle bundle, final int resultCode) { argument
227 bundle.putParcelable(EmailServiceProxy.VALIDATE_BUNDLE_POLICY_SET, mPolicy);
252 bundle.putInt(EmailServiceProxy.VALIDATE_BUNDLE_RESULT_CODE, messagingExceptionCode);
/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 DSinglePhotoDataAdapter.java123 private void onDecodeLargeComplete(ImageBundle bundle) { argument
125 setScreenNail(bundle.backupImage,
126 bundle.decoder.getWidth(), bundle.decoder.getHeight());
127 setRegionDecoder(bundle.decoder);
/packages/apps/Mms/src/com/android/mms/transaction/
H A DTransactionBundle.java83 * Constructor of a bundle used for TransactionBundle instances of type
98 * Constructor of a transaction bundle used for incoming bundle instances.
100 * @param bundle The incoming bundle
102 public TransactionBundle(Bundle bundle) { argument
103 mBundle = bundle;
/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/Contacts/src/com/android/contacts/editor/
H A DEventFieldEditorView.java142 public Dialog createDialog(Bundle bundle) { argument
143 if (bundle == null) throw new IllegalArgumentException("bundle must not be null");
144 int dialogId = bundle.getInt(DIALOG_ID_KEY);
149 return super.createDialog(bundle);
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DPinnedHeaderListDemoActivity.java99 protected void onCreate(Bundle bundle) { argument
100 super.onCreate(bundle);
/packages/apps/Email/src/com/android/email/provider/
H A DFolderPickerActivity.java51 public void onCreate(Bundle bundle) { argument
52 super.onCreate(bundle);
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
H A DIntentStore.java152 PersistableBundle bundle = stringToPersistableBundle(mPrefs.getString(key, null));
153 if (bundle != null) {
154 result.putExtra(key, bundle);
162 private String persistableBundleToString(PersistableBundle bundle) { argument
163 if (bundle == null) {
173 bundle.saveToXml(serializer);
177 ProvisionLogger.loge("Persistable bundle could not be stored as string.", e);
206 ProvisionLogger.loge("Persistable bundle could not be restored from string " + string);
H A DMessageParser.java90 * Furthermore this class can construct the bundle of extras for the second kind of intent given a
130 public void addProvisioningParamsToBundle(Bundle bundle, ProvisioningParams params) { argument
131 bundle.putString(EXTRA_PROVISIONING_TIME_ZONE, params.mTimeZone);
132 bundle.putString(EXTRA_PROVISIONING_LOCALE, params.getLocaleAsString());
133 bundle.putString(EXTRA_PROVISIONING_WIFI_SSID, params.mWifiSsid);
134 bundle.putString(EXTRA_PROVISIONING_WIFI_SECURITY_TYPE, params.mWifiSecurityType);
135 bundle.putString(EXTRA_PROVISIONING_WIFI_PASSWORD, params.mWifiPassword);
136 bundle.putString(EXTRA_PROVISIONING_WIFI_PROXY_HOST, params.mWifiProxyHost);
137 bundle.putString(EXTRA_PROVISIONING_WIFI_PROXY_BYPASS, params.mWifiProxyBypassHosts);
138 bundle
[all...]
/packages/apps/PackageInstaller/src/com/android/packageinstaller/
H A DInstallAppProgress.java186 public Dialog onCreateDialog(int id, Bundle bundle) { argument
H A DPackageInstallerActivity.java235 public Dialog onCreateDialog(int id, Bundle bundle) { argument
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DWaitFragment.java133 public Loader<Cursor> onCreateLoader(int id, Bundle bundle) { argument
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DFastScrollingIndexCache.java162 Bundle bundle = new Bundle();
163 bundle.putStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES, titles);
164 bundle.putIntArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS, counts);
165 return bundle;
231 String countExpression, Bundle bundle) {
237 bundle.getStringArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_TITLES),
238 bundle.getIntArray(Contacts.EXTRA_ADDRESS_BOOK_INDEX_COUNTS)));
230 put(Uri queryUri, String selection, String[] selectionArgs, String sortOrder, String countExpression, Bundle bundle) argument
/packages/apps/Email/src/com/android/email/activity/setup/
H A DOAuthAuthenticationActivity.java99 public void onCreate(Bundle bundle) { argument
100 super.onCreate(bundle);
117 if (bundle != null) {
118 mAuthenticationCode = bundle.getString(EXTRA_AUTHENTICATION_CODE);
/packages/apps/Settings/src/com/android/settings/sim/
H A DSimSettings.java98 public void onCreate(final Bundle bundle) { argument
99 super.onCreate(bundle);

Completed in 1451 milliseconds

12