Android Byte Array to Bundle Convert bundleFromByteArray(byte[] byteArray)

Here you can find the source of bundleFromByteArray(byte[] byteArray)

Description

bundle From Byte Array

License

Apache License

Declaration

public static Bundle bundleFromByteArray(byte[] byteArray) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import android.os.Bundle;
import android.os.Parcel;

public class Main {
    public static Bundle bundleFromByteArray(byte[] byteArray) {
        Parcel obtain = Parcel.obtain();
        obtain.unmarshall(byteArray, 0, byteArray.length);
        obtain.setDataPosition(0);/* w w w.j av a2 s . c o  m*/
        Bundle result = Bundle.CREATOR.createFromParcel(obtain);
        obtain.recycle();
        return result;
    }
}