Webview and chrome browser behave different on back key

290 Views Asked by At

Let's say be navigate through site1.com site2.com/a.html then it redirects to site2.com/b.html automatically. if you press back button on webview in an app, it tries to go back to site2.com/a.html which redirect you to site2.com/b.html which is not desirable. If you try this on chrome browser you go back to site1.com.

How can this achieve programmatically?

1

There are 1 best solutions below

1
On

You may use this answer's approach https://stackoverflow.com/a/6077173/2879783

And If I didn't got you wrong, you may implement the following:

@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    if(event.getAction() == KeyEvent.ACTION_DOWN){
        switch(keyCode)
        {
        case KeyEvent.KEYCODE_BACK:
            String webUrl = myWebView.getUrl();
            if(webUrl.equals("site2.com/a.html")){
                myWebView.load("site1.com");
            }else{
                finish();
            }
            return true;
        }

    }
    return super.onKeyDown(keyCode, event);
}