J'ai un chemin de fichier Chaîne de la forme "e:\...\xxx.jpg" Comment puis-je en créer un dessinable?
Vous pouvez créer un dessin ou un bitmap à partir d'un chemin de chaîne comme celui-ci:
String pathName = "/path/to/file/xxx.jpg";
Drawable d = Drawable.createFromPath(pathName);
Pour un bitmap:
String pathName = "/path/to/file/xxx.jpg";
bitmap b = BitmapFactory.decodeFile(pathName);