我保存了一张图片/data/data/my.package.name/files/mypicture.png
,我想将它加载到布局中。
我试过这个,但它不起作用。
File filePath = getFileStreamPath("pictureIWouldLikeToLoad.png");
ImageView img = new ImageView(getApplicationContext());
img.setImageDrawable(Drawable.createFromPath(filePath.toString()));
ViewGroup picturesLayout = (ViewGroup) findViewById(R.id.layout_pictures_area);
picturesLayout.addView(imgView);
我不知道它是如何不起作用的,有人能解释一下为什么吗?那么我想要做什么呢?我需要内容提供者吗?有没有更简单的方法来做到这一点?