在我的Android应用程序中,我使用下面的代码将图像文件存储在内部存储器中 -
FileOutputStream fos = con.openFileOutput(fileName, con.MODE_PRIVATE);
fos.write(baf.toByteArray()); // baf - ByteArrayBuffer
fos.close();
任何人都可以帮我从内部显示这个图像文件吗?
答案 0 :(得分:17)
试试这个:
ImageView imageView = (ImageView) findViewById(R.id.image);
File filePath = getFileStreamPath(fileName);
imageView.setImageDrawable(Drawable.createFromPath(filePath.toString()));
在上面的代码段R.id.image
中,您的布局中某处是ImageView
的ID。 fileName
是String
,其中包含您在openFileOutput
电话中使用的文件的名称。