我使用本教程作为向我的应用程序添加功能的指南:
http://developer.android.com/training/camera/photobasics.html
本教程附带的示例不完整,包含一些“错误”。我将错误一词放在引号中,因为主要教程的目的已经涵盖:使用相机。
我专注于从拍摄的大照片中获取缩略图。当您运行该示例时,您会很快注意到,尽管大照片的缩略图已正确存储在指定的目录中,但大多数情况下都不会显示该缩略图。
做了一些工作,我发现了以下“错误”:
1.-图像的路径值经常丢失,因为活动由于内存不足而被破坏。我修复了在 onSaveInstanceState() 方法中存储照片路径的问题。
这样我总是能够访问我的图像,但它仍然没有出现。我继续进行一些测试并发现:
2.- 大多数情况下,当要求图像视图的测量值(宽度和高度)以重新缩放图像时,值是 0。我认为这可能是问题并发现它是因为在查看视图之前无法获得测量值画。所以我用一个处理程序修复了这个问题,并发送了一条延迟消息(1.5'')来执行。现在,测量值总是正确的,但即使缩略图大部分时间都没有显示
所以我认为 Bitmap.decodeFile 方法返回一个空值,尽管所有变量都设置正确。但事实并非如此,它正在返回一个位图。所以男孩和女孩,我知道我无法找到为什么不显示缩略图。
一点帮助将不胜感激。谢谢!
这是重新缩放图像的方法:
//Scaling the real size photo to the image view size
private void setImagenPequena()
{
Log.w("PAth: ", n_path_foto_actual);
// Get the dimensions of the View
int targetW = n_iv_foto.getMeasuredWidth();
int targetH = n_iv_foto.getMeasuredHeight();
// Get the dimensions of the bitmap
BitmapFactory.Options bmOptions = new BitmapFactory.Options();
bmOptions.inJustDecodeBounds = true;
BitmapFactory.decodeFile(n_path_foto_actual, bmOptions);
int photoW = bmOptions.outWidth;
int photoH = bmOptions.outHeight;
Log.w("setImagenPequena: ", "photoW: " + Integer.toString(photoW));
Log.w("setImagenPequena: ", "photoH: " + Integer.toString(photoH));
Log.w("setImagenPequena: ", "targetW: " + Integer.toString(targetW));
Log.w("setImagenPequena: ", "targetH: " + Integer.toString(targetW));
if(targetW > 0 && targetH > 0)
{
// Determine how much to scale down the image
int scaleFactor = Math.min(photoW/targetW, photoH/targetH);
bmOptions.inSampleSize = scaleFactor;
}
// Decode the image file into a Bitmap sized to fill the View
bmOptions.inJustDecodeBounds = false;
bmOptions.inPurgeable = true;
Bitmap bitmap = BitmapFactory.decodeFile(n_path_foto_actual, bmOptions);
if(bitmap == null)
Log.w("valor bitmap: ", "null");
else
Log.w("valor bitmap: ", "!=null");
n_iv_foto.setImageBitmap(bitmap);
}