在没有打开图库意图的情况下在Oncreate方法中显示图库

时间:2017-01-30 06:37:43

标签: android android-intent

我知道如何打开图库意图并在imageview中显示。

但我在oncreate方法中自动选择图像并在imageview中显示时遇到问题。

我在图库文件夹中有一个名为“myfile.jpg”的图像

任何人都可以指导我如何在不打开画廊意图的情况下进行操作。

提前谢谢

1 个答案:

答案 0 :(得分:1)

这是解决方案:

ImageView image = (ImageView)findViewById(R.id.myImage);

File root = Environment.getExternalStorageDirectory();
String path = root.getAbsolutePath();
path = path + File.separator + "myfile.jpg"; //where you image file located

Bitmap myBitmap = BitmapFactory.decodeFile(path);

image.setImageBitmap(myBitmap);