画像ビューに保存されている以前の 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);