如何获取assets文件夹下的图片,加载到ImageView中显示

如何获取assets文件夹下的图片,加载到ImageView中显示,第1张

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中显示、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9532252.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存