Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As stated in this post Android WebView does not display web page correctly I have tried javascript enable, but still not working. Have any idea, where i am wrong?

        WebView wv = (WebView) findViewById(R.id.webview1);
        WebSettings webSettings = wv.getSettings();
        webSettings.setJavaScriptEnabled(true);
        webSettings.setBuiltInZoomControls(true);
        wv.loadUrl("http://www.google.com");
share|improve this question
add internet permission in the manifest file <uses-permission android:name="android.permission.INTERNET"/> – Abhi Jul 26 '11 at 11:17
Getting any errors? – softarn Jul 26 '11 at 11:18
1  
@Titus thank you, permission solved my problem – tugce Jul 26 '11 at 11:22

2 Answers

up vote 1 down vote accepted

Add:

    <uses-permission
            android:name="android.permission.INTERNET"></uses-permission>

to your AndroidManifest.xml if you haven't done so. Also check if you have internet connection on your emulator. Try opening the Browser. If you do not have internet connection try to restart the emulator.

share|improve this answer

My webview on 2.3 always show page not found. but in 4.0.0 or above it wroks fine.Please help. Where i am wrong.

share|improve this answer
Did you add permission to your androidManifest? – tugce May 3 at 10:54
When i change the project work with 4.0 it works well.So i have added the permissions which it needed. Is there any other permission needed to add when working on 2.3? – shailesh May 16 at 9:32

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.