Android Webview make back button go to previous page

前端 未结 4 699
遇见更好的自我
遇见更好的自我 2021-01-14 19:44

I have a web view that lets me browse through a site. When i click the back button, rather than it going to the previous page it exits the app. I have added the following me

4条回答
  •  梦谈多话
    2021-01-14 20:27

    I think you should override your activity OnBackPressed :

    @Override
    public void onBackPressed() {
        if (webView.canGoBack()) {
            webView.goBack();
        } else {
            super.onBackPressed();
        }
    }
    

提交回复
热议问题