欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Viewpager+Fragment 跳转Activity报错android.os.TransactionTooLargeException: data parcel size xxxxx bytes

程序员文章站 2022-04-15 17:44:11
...

Viewpager + Fragment 跳转Activity报错android.os.TransactionTooLargeException: data parcel size xxxxx bytes

// 在Fragment中获取Activity传过来的数据
Bundle bundle = getArguments();
// Viewpager + Fragment 
// 获取数据之后需要清空里面的内容,否则Fragment的页数一多,跳转其他Activity会上述报错
bundle.clear();