我正在尝试从现有的相机应用程序中捕获图像,将图像保存在自定义文件夹中,并在 imageView 中显示缩略图。只要我没有指定保存文件的位置,相机就会提供缩略图:
我可以从返回的意图中获取缩略图:
...
Intent i = = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i)
}
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
Bundle extras = intent.getExtras();
Bitmap mImageBitmap = (Bitmap) extras.get("data");
}
或者我可以将文件保存在指定的文件夹中(效果很好)
...
Intent i = = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra((MediaStore.EXTRA_OUTPUT, outputFileUri);
startActivityForResult(i)
}
但是缩略图不再存储在意图额外的“数据”中,当我尝试检索缩略图时,出现错误(这是来自我的 LogCat)
10-04 06:30:14.463: E/AndroidRuntime(1967): Caused by: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=null} to activity: java.lang.NullPointerException
如您所见,返回的字段为空,而不是位图缩略图。之后我尝试解码位图以直接从文件生成缩略图,但这需要太长时间(即使在下采样时我也会出现内存不足错误),而且两次执行这项工作似乎违反直觉。有什么建议么?