小编Pra*_*vin的帖子

Android Q Beta - 从包裹创建时 ContentValue 为空

安卓构建: QPP5.190530.015

模拟器: Pixel 2

HashMap<String,Object> map = new HashMap<>();
map.put("key1", true);
map.put("key2", "String");
map.put("key3", 3);

Parcel parcel = Parcel.obtain();
parcel.writeMap(map);
parcel.setDataPosition(0);
ContentValues contentValues = ContentValues.CREATOR.createFromParcel(parcel);
Run Code Online (Sandbox Code Playgroud)

预期结果:

contentValues would contain the data of the given map.

实际结果 :

contentValues is empty

android android-10.0

7
推荐指数
1
解决办法
164
查看次数

标签 统计

android ×1

android-10.0 ×1