如果我必须在我的SD卡中使用ImageView设置图像,我使用以下代码:
Drawable c = Drawable.createFromPath(imgPath);
if(c!=null)
imageView.setImageResource(c);
我知道是否需要文件的存在控件。如果图像不存在,返回方法createFromPath会是什么?
答案 0 :(得分:1)
来自Drawable
的{{3}}:
return null;
如果将null作为输入参数,它也将返回null。