我正在尝试从相机意图中显示捕获的图像,但是当我调用showPhoto方法时,图像不会显示在ImageView中。堆栈跟踪没有错误输出,因此我不确定如何调试该问题。
有谁知道该方法没有显示捕获的图像有什么问题?
showPhoto方法如下:
private void showPhoto(Uri photoUri) {
String filePath = photoUri.getEncodedPath();
File imageFile = new File(filePath);
//File imageFile = new File(photoUri.getPath());
if (imageFile.exists()){
Drawable oldDrawable = photoImage.getDrawable();
if (oldDrawable != null) {
((BitmapDrawable)oldDrawable).getBitmap().recycle();
}
Bitmap bitmap = BitmapFactory.decodeFile(imageFile.getAbsolutePath());
BitmapDrawable drawable = new BitmapDrawable(this.getResources(), bitmap);
photoImage.setScaleType(ImageView.ScaleType.FIT_CENTER);
photoImage.setImageDrawable(drawable);
}
}
这是我遵循的教程:http://www.linux.com/learn/tutorials/722038-android-calling-the-camera
我正在测试的设备是JellyBean 4.1
,这是完整课程的链接:
答案 0 :(得分:1)
使用BitmapOptions.inJustDecodeBounds首先找出图像的尺寸
通常,Android不会加载大于4000像素宽/高的图像
如果您发现图像太大,可以使用BitmapOptions.inSampleSize缩小图像,以便Android加载它
事实上,您可以直接使用ImageView.setImageBitmap(Bitmap)代替setImageDrawable