I\'m trying to create a Bitmap or Drawable from existing file path.
String path = intent.getStringExtra(\"FilePath\"); BitmapFactory.Options option = new Bit
Well, using the static Drawable.createFromPath(String pathName) seems a bit more straightforward to me than decoding it yourself... :-)
Drawable.createFromPath(String pathName)
If your mImg is a simple ImageView, you don't even need it, use mImg.setImageUri(Uri uri) directly.
mImg
ImageView
mImg.setImageUri(Uri uri)