Here is my code

public class Main extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


    WebView webView = (WebView)findViewById(R.id.webView);

    // Assign webclient.
    webView.setWebViewClient(new WebViewClient( ) {
        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon) {
            Log.d("TAG", url);
        }

        @Override
        public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
            Log.d("TAG", "failed: " + failingUrl + ", error code: " + errorCode + " [" + description + "]");
        }
    });


    webView.loadUrl("http://m.vooglemoogle.com" );
}



}

Results in the following log:

03-29 13:40:27.005: DEBUG/TAG(10948): http://m.vooglemoogle.com/
03-29 13:40:27.599: DEBUG/TAG(10948): failed: http://m.vooglemoogle.com/, error code: -2[The URL could not be found.]
03-29 13:40:27.607: DEBUG/TAG(10948): http://m.vooglemoogle.com/

Note another call to onPageStarted( ) ... Does anyone know the reason behind this? cheers!

link|improve this question
I've got the same problem: I've tried webView.loadUrl("loadSomething"), and it call twice onPageStarted and onPageFinished... Have you discovered what was the problem? – VitoShadow Oct 21 '11 at 14:56
feedback

2 Answers

I encountered the same problem while testing my app on an AVD with API 7 (not sure if this is relevant but in any case).

I noticed that the exact sequence of callbacks is the following:

onPageStarted()     // url = non-existing url
onLoadResource()    // url = non-existing url
onReceivedError()   // url = non-existing url

onPageStarted()     // url = non-existing url
onLoadResource()    // url = file://android_assed/webkit/android-weberror.png
onPageFinished()    // url = non-existing url

So I guess the loading of the Android "Web page not available" page is triggering the second onPageStarted call.

link|improve this answer
feedback

In the android API, you can find the note:

Notify the host application that a page has started loading. This method is called once for each main frame load so a page with iframes or framesets will call onPageStarted one time for the main frame. This also means that onPageStarted will not be called when the contents of an embedded frame changes, i.e. clicking a link whose target is an iframe.

Which suggests that it could be caused by "iframes" in the web page.

link|improve this answer
Check the question title! How can there be iframes in the webpage if you are connecting to a non-existent website! – THelper Dec 9 '11 at 11:06
feedback

Your Answer

 
or
required, but never shown

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