Android:如果图像不存在,返回createFromPath方法是什么?

时间:2012-11-11 16:01:39

标签: android view imageview

如果我必须在我的SD卡中使用ImageView设置图像,我使用以下代码:

 Drawable c = Drawable.createFromPath(imgPath);     
 if(c!=null)
    imageView.setImageResource(c);

我知道是否需要文件的存在控件。如果图像不存在,返回方法createFromPath会是什么?

1 个答案:

答案 0 :(得分:1)

来自Drawable的{​​{3}}:

 return null;

如果将null作为输入参数,它也将返回null。