Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to load an html file into a webview but the webview remains blank. Can someone please help me to achieve this ?

here is my html

<script src="http://france.meteofrance.com/portlet/plugins/meteo/VignetteMeteoVille3.javascript?idLieu=431200" charset="UTF-8"></script> 

this is on create method

//oncreate method

protected void onCreate(Bundle savedInstanceState) {

    // TODO Auto-generated method stub

    super.onCreate(savedInstanceState);

    setContentView(R.layout.rss_feed);

     webcontent = (WebView)findViewById(R.id.webViewHistoire);

     webcontent.setWebViewClient(new NewsClient());

     webcontent.getSettings().setJavaScriptEnabled(true);

     webcontent.getSettings().setPluginsEnabled (true);

     webcontent.getSettings().setDomStorageEnabled(true);

     webcontent.loadUrl("file:///android_asset/home.html");


}

//back key

public boolean onKeyDown(int keyCode, KeyEvent event) {

    if ((keyCode == KeyEvent.KEYCODE_BACK) && webcontent.canGoBack()) {

        webcontent.goBack();    

        return true;

    }

    return super.onKeyDown(keyCode, event);

}

private class NewsClient extends WebViewClient {

    public boolean shouldOverrideUrlLoading(WebView view, String url) {

        return true;
    }
}
share|improve this question
Can you post some code? – GrIsHu Jan 4 at 4:55
Grishu i have updated the post – Nikita Jan 4 at 5:06
the html file is in assets folder – Nikita Jan 4 at 5:06
did you tried with any phonegap android samples.. in that you will have the idea to call javascript file using html.. from android webview. – itsrajesh4uguys Jan 4 at 5:13
show 1 more comment

1 Answer

Is your html file code written in <html> tag ? if not then please write it as below:

<html> 
  <head>
 <script language="JavaScript"  src="http://france.meteofrance.com/portlet/plugins/meteo/VignetteMeteoVille3.javascript?idLieu=431200" charset="UTF-8">
 </script>
 </head>
  </html> 

And try to load it in webview.

share|improve this answer
yes it is in the body tag it is working fine when loaded in pc browser – Nikita Jan 4 at 5:32
it doesn't work with tag too – Nikita Jan 4 at 5:34
can you post your html file code? – GrIsHu Jan 4 at 5:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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