我如何能够从存储在图像视图中的先前 uri 源将内存从图像视图中刷新?到目前为止,这是我的代码:
ImageView a = (ImageView)findViewById(R.id.a);
ImageView b=(ImageView)findViewById(R.id.b);
ImageView c =(ImageView)findViewById(R.id.c);
Uri topImage = Uri.parse(top);
Uri bottomImage = Uri.parse(bottom);
Uri fwImage = Uri.parse(fw);
a.setImageURI(topImage);
b.setImageURI(bottomImage);
c.setImageURI(fwImage);