Summary:
Methods
| Inherited Methods
BundleCompat
public
final
class
BundleCompat
extends Object
| java.lang.Object | |
| ↳ | androidx.core.app.BundleCompat |
Helper for accessing features in Bundle.
Summary
Public methods | |
|---|---|
static
IBinder
|
getBinder(Bundle bundle, String key)
A convenience method to handle getting an |
static
void
|
putBinder(Bundle bundle, String key, IBinder binder)
A convenience method to handle putting an |
Inherited methods | |
|---|---|
Public methods
getBinder
public static IBinder getBinder (Bundle bundle, String key)
A convenience method to handle getting an IBinder inside a Bundle for all
Android versions.
| Parameters | |
|---|---|
bundle |
Bundle: The bundle to get the IBinder. |
key |
String: The key to use while getting the IBinder. |
| Returns | |
|---|---|
IBinder |
The IBinder that was obtained.
|
putBinder
public static void putBinder (Bundle bundle, String key, IBinder binder)
A convenience method to handle putting an IBinder inside a Bundle for all
Android versions.
| Parameters | |
|---|---|
bundle |
Bundle: The bundle to insert the IBinder. |
key |
String: The key to use while putting the IBinder. |
binder |
IBinder: The IBinder to put.
|