AssetManager assets = getAssets();
InputStream is = null;
try {
is = assetsopen("images/" + filename);
} catch (IOException e) {
eprintStackTrace();
}
BitmapFactoryOptions options = new BitmapFactoryOptions();
Bitmap bitmap = BitmapFactorydecodeStream(is, null, options);
ImageView image = (ImageView) findViewById(Ridtushow);
imagesetImageBitmap(bitmap);
以上就是关于如何获取assets文件夹下的图片,加载到ImageView中显示全部的内容,包括:如何获取assets文件夹下的图片,加载到ImageView中显示、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)