android.os.Bundle.readFromParcel()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(222)

本文整理了Java中android.os.Bundle.readFromParcel()方法的一些代码示例,展示了Bundle.readFromParcel()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Bundle.readFromParcel()方法的具体详情如下:
包路径:android.os.Bundle
类名称:Bundle
方法名:readFromParcel

Bundle.readFromParcel介绍

暂无

代码示例

代码示例来源:origin: stackoverflow.com

Bundle bundle = shortcutIntent.getExtras();

Parcel parcel = Parcel.obtain();
bundle.writeToParcel(parcel, 0);
byte[] byt = parcel.marshall();

String s = Base64.encodeToString(byt, 0, byt.length, 0); //store this string to sqlite
byte[] newByt = Base64.decode(s, 0);

Bundle newBundle = new Bundle();
Parcel newParcel = Parcel.obtain();
newParcel.unmarshall(newByt, 0, newByt.length);
newParcel.setDataPosition(0);
newBundle.readFromParcel(newParcel);

Intent intent = new Intent();
intent.putExtras(newBundle);

MainActivity.getContext().startActivity((Intent)intent.getExtras().get(Intent.EXTRA_SHORTCUT_INTENT));

代码示例来源:origin: ManbangGroup/Phantom

newBundle.readFromParcel(originParcel);
intent.replaceExtras(newBundle);
originParcel.recycle();

相关文章

Bundle类方法