Android デバイスのディレクトリから JPG ファイルを取得する次のコードがあります。
File f = new File(cacheDir, fn);
f
それを取得して ImageView に入れるにはどうすればよいですか?
ImageView imgView = (ImageView)header.findViewById(R.id.imvCover);
// what call do I make here?
// this obviously is not correct and just for example.
imgView.setToFile(f);