android drawable from file path

为君一笑 提交于 2019-12-17 21:48:57

问题


I have a file path String of the form "e:\...\xxx.jpg" How do I create a drawable from it?


回答1:


You can create a Drawable or Bitmap from a string path like this:

 String pathName = "/path/to/file/xxx.jpg"; 
 Drawable d = Drawable.createFromPath(pathName);

For a Bitmap:

String pathName = "/path/to/file/xxx.jpg";
bitmap b = BitmapFactory.decodeFile(pathName);


来源:https://stackoverflow.com/questions/5834221/android-drawable-from-file-path

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!