I have an app in which I have a WebView where I display some websites. It works, clicking a link in the webpage goes to the next page in the website inside my a
WebView
Webview in Activity,Below code worked for me , Finish the activity the after load the Url in webview.in onbackpressed it go to the previous activity
webView = (WebView) findViewById(R.id.info_webView); webView.loadUrl(value); finish();