如何获得res文件夹的Uri?

时间:2011-11-02 08:11:44

标签: android

我正在尝试获取我在drawable文件夹中的图像的Uri。我尝试了许多可能的方法,但似乎没有任何工作。任何人都可以建议我如何获得res文件夹的Uri。任何帮助深表感谢。

1 个答案:

答案 0 :(得分:20)

嗯,实际上很容易。包中资源的基本URI类似于以下可能性:

android.resource://[package]/[resource_id]
android.resource://[package]/[res type]/[res name]

所以以下是可以管理的。

Uri path = Uri.parse("android.resource://com.segf4ult.test/" + R.drawable.icon);
Uri otherPath = Uri.parse("android.resource://com.segf4ult.test/drawable/icon");

您可以在http://androidbook.blogspot.com/2009/08/referring-to-android-resources-using.html

找到更多相关信息