Parcel.SetDataSize(Int32) 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.
Change the amount of data in the parcel.
[Android.Runtime.Register("setDataSize", "(I)V", "")]
public void SetDataSize (int size);
[<Android.Runtime.Register("setDataSize", "(I)V", "")>]
member this.SetDataSize : int -> unit
Parameters
- size
- Int32
The new number of bytes in the Parcel.
- Attributes
Remarks
Change the amount of data in the parcel. Can be either smaller or larger than the current size. If larger than the current capacity, more memory will be allocated.
Java documentation for android.os.Parcel.setDataSize(int)
.
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.