Skip to content Skip to sidebar Skip to footer

How To Navigate Into Activity Using Webview In Android

I am doing one app. In this I am passing html file using WebView it is working good. But in html page I have some links. When I click that link means it is default going to websit

Solution 1:

Set a WebViewClient to your webview and override shouldOverrideUrlLoading. Check if the url to be loaded is the one you want to intercept. If it is do what you want and return true, if its not, return false.

    webview.setWebViewClient(newWebViewClient() {           
    publicbooleanshouldOverrideUrlLoading(WebView view, String url) {
        if (url.equals("theURLYouDontWantToLoadInBrowser")) { 
            //Do your thing startActivity(newIntent(this, OnlineQuery.class));
            returntrue;
        } else { 
            returnfalse;          
        }       
    });

Solution 2:

I don't understand at all your question, but if what you want is to handle the url navigation of the html load in the java code (webview), you could implement shouldOverrideUrlLoading (in this method you can intercept the url loadings) function.

Hope this helps

Solution 3:

Try this..

Uriuri= Uri.parse("http://www.google.com");
    Intentintent=newIntent(Intent.ACTION_VIEW, uri);
    startActivity(intent);

Post a Comment for "How To Navigate Into Activity Using Webview In Android"