Added Methods
|
int describeContents()
|
Report the nature of this Parcelable's contents |
boolean[] getBooleanArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
byte[] getByteArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
char[] getCharArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
double[] getDoubleArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
float[] getFloatArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
int[] getIntArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
ArrayList<Integer> getIntegerArrayList(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
long[] getLongArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
ArrayList<T> getParcelableArrayList(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
short[] getShortArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
String[] getStringArray(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
ArrayList<String> getStringArrayList(String )
|
Returns the value associated with the given key, or null if
no mapping of the desired type exists for the given key or a null
value is explicitly associated with the key. |
boolean hasFileDescriptors()
|
Reports whether the bundle contains any parcelled file descriptors. |
void putBooleanArray(String, boolean[])
|
Inserts a boolean array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putByteArray(String, byte[])
|
Inserts a byte array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putCharArray(String, char[])
|
Inserts a char array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putDoubleArray(String, double[])
|
Inserts a double array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putFloatArray(String, float[])
|
Inserts a float array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putIntArray(String, int[])
|
Inserts an int array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putIntegerArrayList(String, ArrayList<Integer>)
|
Inserts an ArrayList value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putLongArray(String, long[])
|
Inserts a long array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putParcelableArrayList(String, ArrayList<Parcelable>)
|
Inserts a List of Parcelable values into the mapping of this Bundle,
replacing any existing value for the given key. |
void putShortArray(String, short[])
|
Inserts a short array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putSparseParcelableArray(String, SparseArray<Parcelable>)
|
Inserts a SparceArray of Parcelable values into the mapping of this
Bundle, replacing any existing value for the given key. |
void putStringArray(String, String[])
|
Inserts a String array value into the mapping of this Bundle, replacing
any existing value for the given key. |
void putStringArrayList(String, ArrayList<String>)
|
Inserts an ArrayList value into the mapping of this Bundle, replacing
any existing value for the given key. |
void readFromParcel(Parcel )
|
Reads the Parcel contents into this Bundle, typically in order for
it to be passed through an IBinder connection. |