I'm storing the drawable resource path in an Uri in this way:
Uri uri = Uri.parse("android.resource://my_app_package/drawable/drawable_name");
How do I get the Drawable that the uri is referencing?
I don't want to put it in an ImageView, just retrieve the Drawable (or Bitmap) object.