How to disable back button pressed for webview in android ?
@Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (wv1 != null &&
Simply override the onBackPressed() method.
@Override public void onBackPressed() { }