小米MI设备没有从Gallery中挑选图像

时间:2017-07-10 14:09:58

标签: android imageview

我有一个非常奇怪的问题。我正在从图库中选择一个图像,代码在诺基亚6,One Plus X等所有设备上正常工作 对于xiaomi设备,图像未在ImageView上设置。

任何人都可以帮我解决这个问题吗?    我必须选择多个图像。
从代码库中选择图像的代码

Intent intent = new Intent(Intent.ACTION_PICK, MediaStore.Images.Media.INTERNAL_CONTENT_URI);
        intent.setType("image/*");
        intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
        startActivityForResult(Intent.createChooser(intent, "Select File"), SELECT_FILE);

1 个答案:

答案 0 :(得分:0)

如果要删除多个图像选择,则需要通过Cursor在新的String数组中对其进行解析。

并在代码中添加以下两行:

 android:hardwareAccelerated="false"

   android:largeHeap="true"