I have an Android app that displays a comic book. To make use of the built-in zoom controls, I am loading the pictures in a webview like so:

webView.loadUrl("file:///android_asset/page1.jpg");

This is working just fine, however, since the images are in the assets folder, they are not being compressed which makes my .apk enormous. I was wondering how to reference resource files (from the res/drawable folder) with a file path like I did above with the assets. Does anyone know what that path would look like? I've tried things like "file:///res/drawable/pagetitle.jpg" with no success. Thanks for the help.

Update: I found that "file:///android_res/drawable/page1.jpg" was the path that I was looking for.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

from this site

Using the resource id, the format is:

"android.resource://[package]/[res id]"

Uri path = Uri.parse("android.resource://com.androidbook.samplevideo/" + R.raw.myvideo);

or, using the resource subdirectory (type) and resource name (filename without extension), the format is:

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

Uri path = Uri.parse("android.resource://com.androidbook.samplevideo/raw/myvideo");

link|improve this answer
I found a different solution (see the update) and I haven't tried this, but thank you for the response. – Amplify91 Feb 2 '11 at 22:02
feedback

I also had to use loadDataWithBaseURL instead of just plain loadData to get the "file:///android_res/drawable/page1.jpg" to work.

link|improve this answer
feedback

I dont think that there is any other direct way. But u can try using loadData method.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.