Here you can find the source of bundleFromByteArray(byte[] byteArray)
public static Bundle bundleFromByteArray(byte[] byteArray)
//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; } }