我正在尝试使用 MyClass 中的对象填充 ListView 项。该类的属性之一是 jpg 图像。我把我的图像放在图像/文件夹中。我使用此代码填充
private static final String ASSETS_DIR = "images/";
String imgFilePath=ASSETS_DIR+r.resourceID;
try{
Bitmap bitmap = BitmapFactory.decodeFile(imgFilePath);
resourceIdView.setImageBitmap(bitmap);
}
catch(Exception e)
{
System.out.println(" Error");
}
r.resourceID 是图像的名称,例如“AUD.jpg” resourceIDView 是 ImageView 程序没有进入 catch 部分,但是我看不到图像,有人可以帮我吗?