I\'m using a WebView to open some files saved to the app. Is there a way to link to the app\'s directory where files saved at runtime would be, in a similar way that file:///an
from android 2.1, they've added the
"file:///sdcard/..."
support for files on the sdcard
so :
loadUrl("file:///sdcard/path/to/my/file.html");