Get path of Android resource

Use URI Paths instead of "absolute" path, see this post

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

Or use openRawResource(R.id) to open an inputStream, and use it the same way you would use a FileInputStream (readonly)


Not possible. The resource folder you see is compiled into the apk, and it may not even store as it is. (e.g. those layout xml files are no longer xml files once it is compiled)

Two possible solution/work-around for your situation:

  1. Store the files in the '/assets' directory
  2. Push the file you need to a known location (like /mnt/sdcard/... ) with sdk tools
  3. Create a mockup provider for your media loader that accepts stuff in raw resource rather than path, for your testing purpose

In general, NO. As it was repeated several times here, you need to access them through the resources.

That said, there are ways you can work around that:

  • copy the files from res/assets to the internal storage on first run.
  • use adb to push the files to any public location, such as the sdcard (note, it is discouraged also to use absolute paths in there, as not every device may mount the drives to the same location)
  • use a rooted phone, and access any folder, e.g., /data/data/yourapp/ or /tmp/

In any case, you would test against a solution that will most probably not work in most of the devices. I suggest you to follow the directions from the dev guide: http://developer.android.com/guide/topics/data/data-storage.html