Android Webview make back button go to previous page

前端 未结 4 658
遇见更好的自我
遇见更好的自我 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:15

    Backkey pressed event is not suitable here use this code:

    @Override
    public void onBackPressed() {
        super.onBackPressed();
        Intent intent=new Intent(LiveImage.this,DashBoard.class);
        startActivity(intent);
    }
    

提交回复
热议问题