added in version 24.1.0
belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1
belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1
BundleCompat
public
final
class
BundleCompat
extends Object
java.lang.Object | |
↳ | android.support.v4.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 | |
---|---|
![]()
java.lang.Object
|
Public methods
getBinder
added in version 24.1.0
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
added in version 24.1.0
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.
|