显示图像来自资产/图像的图库

时间:2017-06-05 18:20:22

标签: java android image-gallery imagelist

我想显示图片库但是来自" assets / images"文件夹不是来自手机存储。

像这样一个:  enter image description here

1 个答案:

答案 0 :(得分:0)

问题不明确,如果你想从资产中加载单个图像, 那么你可以这样做。

//read image from asset
InputStream is = getAssets().open("image.jpg");

//    create a drawable
Drawable drawable = Drawable.createFromStream(is, null);

//find reference to your imageview and set drawable
ImageView i=(ImageView)findViewById(R.id.image_id); 
i.setImageDrawable(drawable);