Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我必须在 ImageView 中设置图像,从我的 sdcard 中获取,我使用以下代码:
Drawable c = Drawable.createFromPath(imgPath); if(c!=null) imageView.setImageResource(c);
我会知道是否需要对文件进行存在控制。如果图像不存在,会返回什么方法 createFromPath?
从源代码:Drawable
Drawable
return null;
如果您将 null 作为输入参数,它也会返回 null。