Stay organized with collections
Save and categorize content based on your preferences.
@UnstableApi
public final class BundleListRetriever extends Binder
A Binder to transfer a list of Bundles across processes by splitting the list into multiple transactions.
Note: Using this class causes synchronous binder calls in the opposite direction regardless of the "oneway" property.
Example usage:
// Sender
ImmutableList<Bundle> list = ...;
IBinder binder = new BundleListRetriever(list);
Bundle bundle = new Bundle();
bundle.putBinder("list", binder);
// Receiver
Bundle bundle = ...; // Received from the sender
IBinder binder = bundle.getBinder("list");
ImmutableList<Bundle> list = BundleListRetriever.getList(binder);
Summary
Public constructors |
|
Creates a Binder to send a list of Bundles to another process.
|
Protected methods |
boolean |
|
Inherited Constants |
From android.os.IBinder
static final int |
|
static final int |
|
static final int |
|
static final int |
|
static final int |
|
static final int |
|
static final int |
|
static final int |
|
|
Inherited methods |
From android.os.Binder
void |
|
native static final long |
|
native static final long |
|
void |
|
void |
|
native static final void |
|
native static final int |
|
native static final int |
|
static final int |
|
static final UserHandle |
|
native static final int |
|
String |
|
boolean |
|
static final void |
|
void |
|
boolean |
|
IInterface |
|
native static final void |
|
native static final void |
|
native static final long |
|
final boolean |
|
boolean |
|
|
| From android.os.IBinder
|
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2025-05-15 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-05-15 UTC."],[],[]]