我的app无法为用户选择图片的一小部分实例加载位图。
我选择图片的代码是这样的:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT).setType("image/*");
然后我打开位图的代码是:
InputStream input = activity.getContentResolver().openInputStream(uri);
if (input == null)
throw new NullPointerException("Null returned from openInputStream for: " + uri);
然后我得到这样的例外:
java.lang.NullPointerException:从openInputStream返回Null 对于: 内容://com.sec.android.gallery3d.provider/picasa/item/5884758542207200626
java.lang.NullPointerException:从openInputStream返回Null 对于: 内容://com.sec.android.gallery3d.provider/picasa/item/6064868645826106994
答案 0 :(得分:0)
我使用这个库来加载图片,看起来它处理了com.sec.android.gallery3d.provider案例等等: