Parcel.ReadFixedArray Method

Definition

Overloads

Name Description
ReadFixedArray(Object)

Read a new multi-dimensional array from a parcel.

ReadFixedArray(Object, IParcelableCreator)

Read a new multi-dimensional array of typed parcelables from a parcel. If you want to read IInterface values, use readFixedArray(Object,Function) . For values of other types, use readFixedArray(Object) .

ReadFixedArray(Object, IFunction)

Read a new multi-dimensional array of typed interfaces from a parcel.

ReadFixedArray(Object)

Read a new multi-dimensional array from a parcel.

[Android.Runtime.Register("readFixedArray", "(Ljava/lang/Object;)V", "", ApiSince=33)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
public void ReadFixedArray(Java.Lang.Object val);
[<Android.Runtime.Register("readFixedArray", "(Ljava/lang/Object;)V", "", ApiSince=33)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
member this.ReadFixedArray : Java.Lang.Object -> unit

Parameters

val
Object

the destination array to hold the read values.

Attributes

Remarks

Read a new multi-dimensional array from a parcel. If you want to read Parcelable or IInterface values, use #readFixedArray(Object, Parcelable.Creator) or #readFixedArray(Object, Function).

Java documentation for android.os.Parcel.readFixedArray(T).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ReadFixedArray(Object, IParcelableCreator)

Read a new multi-dimensional array of typed parcelables from a parcel. If you want to read IInterface values, use readFixedArray(Object,Function) . For values of other types, use readFixedArray(Object) .

[Android.Runtime.Register("readFixedArray", "(Ljava/lang/Object;Landroid/os/Parcelable$Creator;)V", "", ApiSince=33)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T", "S extends android.os.Parcelable" })]
public void ReadFixedArray(Java.Lang.Object val, Android.OS.IParcelableCreator c);
[<Android.Runtime.Register("readFixedArray", "(Ljava/lang/Object;Landroid/os/Parcelable$Creator;)V", "", ApiSince=33)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T", "S extends android.os.Parcelable" })>]
member this.ReadFixedArray : Java.Lang.Object * Android.OS.IParcelableCreator -> unit

Parameters

val
Object

the destination array to hold the read values. This value cannot be null.

c
IParcelableCreator

The value cannot be null.

Attributes

Remarks

Read a new multi-dimensional array of typed parcelables from a parcel. If you want to read IInterface values, use readFixedArray(Object,Function) . For values of other types, use readFixedArray(Object) .

Java documentation for android.os.Parcel.readFixedArray(T, android.os.Parcelable.Creator<S>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

ReadFixedArray(Object, IFunction)

Read a new multi-dimensional array of typed interfaces from a parcel.

[Android.Runtime.Register("readFixedArray", "(Ljava/lang/Object;Ljava/util/function/Function;)V", "", ApiSince=33)]
[Java.Interop.JavaTypeParameters(new System.String[] { "T", "S extends android.os.IInterface" })]
public void ReadFixedArray(Java.Lang.Object val, Java.Util.Functions.IFunction asInterface);
[<Android.Runtime.Register("readFixedArray", "(Ljava/lang/Object;Ljava/util/function/Function;)V", "", ApiSince=33)>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T", "S extends android.os.IInterface" })>]
member this.ReadFixedArray : Java.Lang.Object * Java.Util.Functions.IFunction -> unit

Parameters

val
Object

the destination array to hold the read values.

asInterface
IFunction

The value cannot be null.

Attributes

Remarks

Read a new multi-dimensional array of typed interfaces from a parcel. If you want to read Parcelable values, use #readFixedArray(Object, Parcelable.Creator). For values of other types, use #readFixedArray(Object).

Java documentation for android.os.Parcel.readFixedArray(T, java.util.function.Function<android.os.IBinder, S>).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to