Available Methods
- putString ( )
- putInt ( )
- getString ( )
- putBoolean ( )
- getInt ( )
- putParcelable ( )
- getBoolean ( )
- getParcelable ( )
- putSerializable ( )
- containsKey ( )
- putLong ( )
- getSerializable ( )
- get ( )
- getLong ( )
- keySet ( )
- putStringArrayList ( )
- putParcelableArrayList ( )
- putBundle ( )
- putFloat ( )
- getStringArrayList ( )
- getParcelableArrayList ( )
- putStringArray ( )
- putDouble ( )
- getBundle ( )
- putByteArray ( )
- getFloat ( )
- putAll ( )
- putFloatArray ( )
- getStringArray ( )
- putCharSequence ( )
- setClassLoader ( )
- remove ( )
- putIntArray ( )
- writeToParcel ( )
- getCharSequence ( )
- getIntArray ( )
- getParcelableArray ( )
- putParcelableArray ( )
- putIntegerArrayList ( )
- getByteArray ( )
- EMPTY
- getDouble ( )
- getFloatArray ( )
- isEmpty ( )
- putLongArray ( )
- size ( )
- getIntegerArrayList ( )
- putSparseParcelableArray ( )
- getSparseParcelableArray ( )
- putBooleanArray ( )
- clear ( )
- putByte ( )
- putShort ( )
- setDefusable ( )
- putShortArray ( )
- setAllowFds ( )
- putDoubleArray ( )
- putCharArray ( )
- getLongArray ( )
- toString ( )
- getBooleanArray ( )
- putChar ( )
- putCharSequenceArray ( )
- putBinder ( )
- putParcelableList ( )
- getShort ( )
- getCharSequenceArray ( )
- getCharSequenceArrayList ( )
- putCharSequenceArrayList ( )
- getClassLoader ( )
- getCharArray ( )
- getByte ( )
Related Classes
- java.io.File
- android.content.Context
- android.view.View
- android.util.Log
- android.widget.TextView
- android.content.Intent
- android.view.ViewGroup
- android.app.Activity
- android.view.LayoutInflater
- android.os.Build
- android.widget.Toast
- android.widget.ImageView
- android.graphics.Color
- android.os.Handler
- android.net.Uri
- android.widget.Button
- android.graphics.Bitmap
- android.text.TextUtils
- android.widget.LinearLayout
- android.content.pm.PackageManager
- android.support.annotation.Nullable
- android.widget.EditText
- android.content.SharedPreferences
- android.support.annotation.NonNull
- android.annotation.SuppressLint
Java Code Examples for android.os.Bundle#putParcelableList()
The following examples show how to use
android.os.Bundle#putParcelableList() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: CacheQuotaService.java From android_9.0.0_r45 with Apache License 2.0 | 6 votes |
@Override public void handleMessage(Message msg) { final int action = msg.what; switch (action) { case MSG_SEND_LIST: final Pair<RemoteCallback, List<CacheQuotaHint>> pair = (Pair<RemoteCallback, List<CacheQuotaHint>>) msg.obj; List<CacheQuotaHint> processed = onComputeCacheQuotaHints(pair.second); final Bundle data = new Bundle(); data.putParcelableList(REQUEST_LIST_KEY, processed); final RemoteCallback callback = pair.first; callback.sendResult(data); break; default: Log.w(TAG, "Handling unknown message: " + action); } }
Example 2
Source File: InstantAppResolverService.java From android_9.0.0_r45 with Apache License 2.0 | 5 votes |
public void onInstantAppResolveInfo(List<InstantAppResolveInfo> resolveInfo) { final Bundle data = new Bundle(); data.putParcelableList(EXTRA_RESOLVE_INFO, resolveInfo); data.putInt(EXTRA_SEQUENCE, mSequence); try { mCallback.sendResult(data); } catch (RemoteException e) { } }
Example 3
Source File: MediaStore.java From android_9.0.0_r45 with Apache License 2.0 | 5 votes |
private static Uri getDocumentUri( ContentResolver resolver, String path, List<UriPermission> uriPermissions) throws RemoteException { try (ContentProviderClient client = resolver.acquireUnstableContentProviderClient( DocumentsContract.EXTERNAL_STORAGE_PROVIDER_AUTHORITY)) { final Bundle in = new Bundle(); in.putParcelableList( DocumentsContract.EXTERNAL_STORAGE_PROVIDER_AUTHORITY + ".extra.uriPermissions", uriPermissions); final Bundle out = client.call("getDocumentId", path, in); return out.getParcelable(DocumentsContract.EXTRA_URI); } }