Skip to content

Instantly share code, notes, and snippets.

@IceskYsl
Created May 30, 2012 11:23
Show Gist options
  • Save IceskYsl/2835604 to your computer and use it in GitHub Desktop.
Save IceskYsl/2835604 to your computer and use it in GitHub Desktop.
publicbooleanonKeyDown(intkeyCode, KeyEventevent) {
if ((keyCode==KeyEvent.KEYCODE_BACK) &&mWebView.canGoBack()
{ mWebView.goBack();
return true;
}
return super.onKeyDown(keyCode, event);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment