如何从字符串设置 imageView 的图像?
我在 res/drawable-mdpi 目录中有一个条目列表和一些位图文件。我试图通过生成路径字符串并使用位图工厂来加载与从列表中选择的字符串值相对应的图像。问题是我认为我的路径不正确,因为位图始终为空,即使对于默认图像也是如此。
String name = entries.get(position);
String img = "res/drawable/logo_" + name.toLowerCase() + ".png"; // create the file name
icon.setScaleType(ImageView.ScaleType.CENTER_CROP);
// check to see if the file exists
File file = new File(img);
if (file.exists()){
bm = BitmapFactory.decodeFile(img);
}
else{// use the default icon
bm = BitmapFactory.decodeFile("logo_default.png");
}
// set the image and text
icon.setImageBitmap(bm);
res 目录是否被复制到设备上?我应该使用什么正确的路径,或者我应该以不同的方式处理这个问题?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您的图像位于可绘制文件夹中,那么您的处理方式是错误的。
尝试这样的事情
if you have the image in the drawable folder you are going about this the wrong way.
try something like this
不需要使用 getDrawable() 你直接使用资源 id 就像
No need to use getDrawable() you directly use the resource id like
您可以创建通用函数来获取可绘制的图像,如下所示:
You can Create Common Function for getting image drawable like this: