【发布时间】:2011-07-12 08:45:18
【问题描述】:
我在 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 目录是否会被复制到设备上?我应该使用什么正确的路径,或者我应该采取不同的方式?
谢谢
【问题讨论】:
-
你应该了解android如何处理资源:developer.android.com/guide/topics/resources/index.html