[android-developers] .html filed loading problem.how to i will solve it

2011-09-23 Thread shital suryawanshi
WebView mWebView =(WebView) findViewById(R.id.webView1); mWebView.loadUrl("file:///android_asset/html/raj.html"); this my code -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

[android-developers] .html filed loading problem.how to i will solve it

2011-09-23 Thread shital suryawanshi
WebView mWebView =(WebView) findViewById(R.id.webView1); mWebView.loadUrl("file:///android_asset/html/raj.html"); this my code -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

Re: [android-developers] .html filed loading problem.how to i will solve it

2011-09-23 Thread Chirag Raval
Hi Shital Please try below code. WebView mWebView=(WebView)findViewById(R.id.mWebView); mWebView.loadUrl("file:///android_asset/html/raj.html");             mWebView.getSettings().setJavaScriptEnabled(true);             mWebView.getSettings().setSaveFormData(true);             mWebView.getSetti

Re: [android-developers] .html filed loading problem.how to i will solve it

2011-09-23 Thread kdı gjofd
yYes...you should enable javacsript.. 2011/9/23, Chirag Raval : > Hi Shital > > Please try below code. > > WebView mWebView=(WebView)findViewById(R.id.mWebView); > > mWebView.loadUrl("file:///android_asset/html/raj.html"); >             mWebView.getSettings().setJavaScriptEnabled(true); >