Example usage for android.os Parcel obtain

List of usage examples for android.os Parcel obtain

Introduction

In this page you can find the example usage for android.os Parcel obtain.

Prototype

public static Parcel obtain() 

Source Link

Document

Retrieve a new Parcel object from the pool.

Usage

From source file:com.google.android.gms.internal.fv.java

public static fv m1980e(byte[] bArr) {
    Parcel obtain = Parcel.obtain();
    obtain.unmarshall(bArr, 0, bArr.length);
    obtain.setDataPosition(0);/*  www. java2s  .co m*/
    fv D = CREATOR.m622D(obtain);
    obtain.recycle();
    return D;
}