I want to log the history url or last loaded url without manually storing the history urls. Is that possible?
Found the answer in the docs ...
WebBackForwardList mWebBackForwardList = mWebView.copyBackForwardList();
String historyUrl = mWebBackForwardList.getItemAtIndex(mWebBackForwardList.getCurrentIndex()-1).getUrl();