解决方法
嗯,实际上很容易.包中资源的基本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找到更多相关信息