0

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); 
4

2 に答える 2

1

これを試して。ファイルオブジェクトを持っているので、以下のコードを使用してください。

これはあなたを助けるかもしれません

Bitmap bmp = BitmapFactory.decodeFile(f.getAbsolutePath());
imgView.setImageBitmap(bmp);
于 2012-10-17T17:40:08.490 に答える
0

これは正しいと思いますよね?

Bitmap b = decodeFile(f);
imgView.setImageBitmap(b);
于 2012-10-17T17:39:39.090 に答える