Parcel.ReadFixedArray Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ReadFixedArray(Object) |
Read a new multi-dimensional array from a parcel. |
ReadFixedArray(Object, IParcelableCreator) | |
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)
[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
- Attributes
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
- 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)
.
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.