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
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); }