24

我以这种方式将可绘制资源路径存储在 Uri 中:

Uri uri = Uri.parse("android.resource://my_app_package/drawable/drawable_name");

如何获取 uri 引用的 Drawable?

我不想把它放在 ImageView 中,只需检索 Drawable(或 Bitmap)对象。

4

1 回答 1

57

getContentResolver cr object然后调用:

is = cr.openInputStream(uri) 

最后调用:

Drawable.createFromStream(InputStream is, String srcName)

...这是一个实际的工作代码示例,您可以自己查看:

try {
    InputStream inputStream = getContentResolver().openInputStream(yourUri);
    yourDrawable = Drawable.createFromStream(inputStream, yourUri.toString() );
} catch (FileNotFoundException e) {
    yourDrawable = getResources().getDrawable(R.drawable.default_image);
}
于 2013-05-23T16:13:22.537 回答