tags:

views:

63

answers:

0

There are posts all over the internet about how to hide the address bar in a WebView, but by default the WebView activity does hide the address bar. I'm interested in actually showing the address bar on a WebView inside my own Activity. However, I don't want to pop out to the default browser, because I am using my own WebViewClient which utilizes onPageStarted to detect when a success URL is reached and finish() back to the parent activity.

I want the address bar to show the user that they are actually at the URL they think they are so that they don't accuse me of phishing. Is there a way to have a WebView show its address bar with its current URL?