我创建了一个应用程序,我允许用户从图库中选择图像或从相机拍照并将该图像上传到网络服务器。这个代码工作正常。现在在其他屏幕上我从网络服务器下载图像如果从图库中选择图像,图像正在图像视图中显示,但是如果从相机捕获图像,则图像未在图像视图中显示,即使文件也存在问题存在于SD卡中
显示图像和从服务器下载的代码
private static class DownloadImage extends AsyncTask<String, Void, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected String doInBackground(String... params) {
String filePath = downloadFile("my web service");
return filePath;
}
@Override
protected void onPostExecute(String result) {
super.onPostExecute(result);
if (result.equalsIgnoreCase("")) {
ivProfilePic.setImageDrawable(context.getResources().getDrawable(R.drawable.user_default));
progressBar.setVisibility(View.GONE);
} else {
profilePicPath = result;
Bitmap bitmapProfilePic = BitmapFactory.decodeFile(profilePicPath);
ivProfilePic.setImageBitmap(bitmapProfilePic);
progressBar.setVisibility(View.GONE);
}
}
}
public static String downloadFile(String url, String dest_file_path) {
try {
File dest_file = new File(dest_file_path);
URL u = new URL(url);
URLConnection conn = u.openConnection();
int contentLength = conn.getContentLength();
DataInputStream stream = new DataInputStream(u.openStream());
byte[] buffer = new byte[contentLength];
stream.readFully(buffer);
stream.close();
DataOutputStream fos = new DataOutputStream(new FileOutputStream(dest_file));
fos.write(buffer);
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
return "";
} catch (IOException e) {
return "";
}
return dest_file_path;
}
答案 0 :(得分:7)
在将图像显示到ImageView之前,您应该缩放图像。 一旦我遇到同样的问题,位图的缩放解决了我的问题。
以下是执行此操作的代码 -
Bitmap b = BitmapFactory.decodeByteArray(bitmapProfilePic , 0, bitmapProfilePic .length)
ivProfilePic.setImageBitmap(Bitmap.createScaledBitmap(b, 120, 120, false));
希望这能解决您的问题
一切顺利。
答案 1 :(得分:1)
在KITKAT(API 19)设备上遇到此问题,但在LOLLIPOP_MR1(API 22)上运行的设备上没有。我想使用API 22或更高版本无需执行createScaledBitmap,但对于在API 19或更低版本上运行的设备,它将需要类似这样的内容:
Bitmap myPictureBitmap = BitmapFactory.decodeFile(imagePath);
if (android.os.Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP_MR1) {
myPictureBitmap = Bitmap.createScaledBitmap(myPictureBitmap, ivMyPicture.getWidth(),ivMyPicture.getHeight(),true);
}
ivMyPicture.setImageBitmap(myPictureBitmap);