public
final
class
BundleCompat
extends Object
| java.lang.Object | |
| ↳ | android.support.v4.app.BundleCompat |
Helper for accessing features in Bundle
introduced after API level 4 in a backwards compatible fashion.
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 | |
|---|---|
java.lang.Object
| |
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.
|
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.
|