[android-developers] Re: How to load html file from sdcard to WebVeiw

2008-10-02 Thread Billsen
That sounds good. However, if html files in sdcard has links to images, js or CSS file also in sdcard, how to get these files? If these files are in assets directory, there will be no issue. What I try to find is that are there any Uri or content provider or resources that make accessing files in

[android-developers] Re: How to load html file from sdcard to WebVeiw

2008-10-02 Thread Mark Murphy
Billsen wrote: > Is it possible to load html file into WebView? If yes, how? Search this Google Group, or [android-beginners], for recent posts discussing WebView's loadDataWithBaseUrl() method. -- Mark Murphy (a Commons Guy) http://commonsware.com Android Training on the Ranch! -- Mar 16-20,

[android-developers] Re: How to load html file from sdcard to WebVeiw

2008-10-01 Thread Chris Chiappone
Yeah that should be relatively simple. List the contents of the SDCard and find your file. Then create a WebView and use the loadData() method to load the data as a string. ~chris On Wed, Oct 1, 2008 at 3:08 PM, Billsen <[EMAIL PROTECTED]> wrote: > > Hi, > > Is it possible to load html file in