how to get the url of the webView
Also you can use this too
String webUrl = webView.getOriginalUrl();
Assuming webView
is the name of your WebView
, you could use:
String webUrl = webView.getUrl();
See Here: http://developer.android.com/reference/android/webkit/WebView.html#getUrl()