我正在使用照片选择器意图选择图像并将其写入应用程序专用文件。我的大部分重要源代码如下所示。按下按钮并执行第一个图像选择意图后,它会成功更新图像视图。但是,一旦我再次按下图像选择按钮(在同一活动中),图像视图就不会更新,除非我退出并重新启动活动。所以我知道图像已成功保存,但为什么布局中的ImageView不会刷新或更新?
public void onResume() {
super.onResume();
ImageView myImageView = (ImageView)findViewById(R.id.contact_image);
if (hasImage) {
myImageView.setImageURI(Uri.fromFile(getFileStreamPath(TEMP_PHOTO_FILE)));
}
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
switch (requestCode) {
case PHOTO_PICKED:
if (resultCode == RESULT_OK) {
if (data != null) {
Bundle extras = data.getExtras();
if (extras != null) {
hasImage = true;
bmp = (Bitmap) extras.get("data");
}
}
}
break;
}
}
private OnClickListener mChooseImage = new OnClickListener() {
@Override
public void onClick(View v) {
try {
// Launch picker to choose photo for selected contact
Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setType("image/*");
intent.putExtra("crop", "true");
intent.putExtra("aspectX", 1);
intent.putExtra("aspectY", 1);
intent.putExtra("outputX", ICON_SIZE);
intent.putExtra("outputY", ICON_SIZE);
intent.putExtra("scale", true);
intent.putExtra("return-data", false);
intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(getTempFile()));
intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
startActivityForResult(intent, PHOTO_PICKED);
} catch (ActivityNotFoundException e) {
// LOG THIS
}
}
};
private File getTempFile() {
try {
if (!hasImage) {
FileOutputStream fos = openFileOutput(TEMP_PHOTO_FILE, MODE_WORLD_WRITEABLE);
fos.close();
}
return getFileStreamPath(TEMP_PHOTO_FILE);
} catch (FileNotFoundException e) {
// To be logged later
return null;
} catch (IOException e) {
// To be logged later
return null;
}
}
根据活动结果,我将ImageView的图像URI设置为此文件。
首次完成时,ImageView会更改以反映此情况。但是,如果我再次尝试选择图像(相同的活动),ImageView将不会更新,直到我退出并重新进入活动。我不确定为什么会这样,是因为我每次都想写入temp.jpg?或者我是否需要以某种方式刷新我的布局以反映ImageView中的更改?
答案 0 :(得分:19)
通过ImageView源代码判断,如果使用相同的URI调用setImageURI,ImageView将不会重新加载图像。您可以尝试通过将图像写入另一个文件来更改URI。
答案 1 :(得分:14)
如果“new”URI与旧版本相同,则ImageView不会重绘。 “View.invalidate()”无效。要“强制”更新,您可以执行以下操作:
public void onResume() {
super.onResume();
ImageView myImageView = (ImageView)findViewById(R.id.contact_image);
if (hasImage) {
myImageView.setImageDrawable(null); // <--- added to force redraw of ImageView
myImageView.setImageURI(Uri.fromFile(getFileStreamPath(TEMP_PHOTO_FILE)));
}
}
答案 2 :(得分:5)
invalidate()无效。试试黑客:
imageView.setImageURI(null);
imageView.setImageURI(newUri);
答案 3 :(得分:1)
要强制重新绘制窗口小部件/视图,只需调用View.invalidate();
答案 4 :(得分:1)
我遇到了类似的问题,我在使用设备相机拍照,然后想要在我返回时刷新原始屏幕中的imageView。解决方案是在onResume()中调用View.invalidate()。
答案 5 :(得分:0)
对我来说,它刷新了我的ImageView
@Override
public void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == PICK_PHOTO && resultCode == RESULT_OK && data != null && data.getData() != null) {
filePath = data.getData();
try {
mProfilePic.setImageURI(null);
mProfilePic.setImageURI(filePath);
Bitmap imageBitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), filePath);
mProfilePic.setImageBitmap(imageBitmap);
} catch (IOException e) {
e.printStackTrace();
}
}
}
答案 6 :(得分:0)
我建议这种解决方法。在尝试了许多解决方案之后,我发现该解决方案对我有用。
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
//Do something after 1000ms
ivProfilePic.setImageBitmap(bitImage);
}
}, 1000);
答案 7 :(得分:0)
tornado.web.RequestHandler
在视图控制器中使用此功能
答案 8 :(得分:0)
如果您还使用 Glide 设置图像,请检查 url 是否正在设置图像。如果 Glide 失败并设置错误图像,则 setImageURI 不会更改图像。
这发生在我的一个项目中。我认为这可能会帮助某人。