[android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread Zsolt Vasvari
IIRC, this is a know bug. Please search on http://b.android.com On Jun 26, 3:46 pm, droid-stricken harik...@gmail.com wrote: Hi All, I am doing the following, but seems not to be working - mWebView = (WebView) findViewById(R.id.webView1); mWebView.loadUrl(file:///android_asset/Help

Re: [android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread NaveenShrivastva
On Sun, Jun 26, 2011 at 1:25 PM, Zsolt Vasvari zvasv...@gmail.com wrote: IIRC, this is a know bug. Please search on http://b.android.com On Jun 26, 3:46 pm, droid-stricken harik...@gmail.com wrote: Hi All, I am doing the following, but seems not to be working - mWebView =

[android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread droid-stricken
Vasvari is right. This is a known bug: Issue 17327: I tried the same code on a android phone running 2.3.4 (and using api level 10) and i could not see any issues with the white spaces in the path. Thanks all. On Jun 26, 3:07 am, NaveenShrivastva kumarnaveen.si...@gmail.com wrote: On Sun, Jun

[android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread droid-stricken
Will i have the same issue if i use raw folder instead of assets? Thanks. On Jun 26, 3:42 am, droid-stricken harik...@gmail.com wrote: Vasvari is right. This is a known bug: Issue 17327: I tried the same code on a android phone running 2.3.4 (and using api level 10) and i could not see any

Re: [android-developers] Re: Loading HTML file from assets folder - path has white spaces in it

2011-06-26 Thread Mark Murphy
On Sun, Jun 26, 2011 at 6:05 AM, droid-stricken harik...@gmail.com wrote: Will i have the same issue if i use raw folder instead of assets? You should have a compile error if you attempt to put a file with a space in its name in a resource directory. Simply rename the file to remove the space.