Hey android noob needs help here.
I am trying to get a web browser browser to delete the browser history after loading the home page (so that the next user who comes around this public application does not see the previous session)
I made a webview client and put
public void onPageFinished(WebView webView, String Url ) {
Browser.clearHistory();
but I donβt know how to change String Url to the URL of the main application page.
I also tried adding a second function to my homebutton onclicklistener, but no luck if someone wants to help, I can also insert this bit of code.
thank
source
share