gpt4 book ai didi

java - 如何在 ImageView 中显示捕获的图像?

转载 作者:行者123 更新时间:2023-12-01 12:05:44 27 4
gpt4 key购买 nike

我正在尝试显示从相机 Intent 捕获的图像,但是当我调用 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,这是完整类的链接:

http://hastebin.com/oqokupulol.java

最佳答案

先使用BitmapOptions.inJustDecodeBounds找出图像的尺寸

通常,Android 不会加载宽度/高度超过 4000 像素的图像

如果您发现图像太大,可以使用 BitmapOptions.inSampleSize 缩小图像,以便 Android 加载它

而且事实上,你可以直接使用ImageView.setImageBitmap(Bitmap)来代替setImageDrawable

关于java - 如何在 ImageView 中显示捕获的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27630222/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com