How To Refresh or Reload webpage automatically in android webview
Refresh or Reload webpage automatically in android webview
//refresh the web page automatically every 60 seconds. new Timer().schedule(new TimerTask(){ @Override public void run() { mnWebView.reload(); }
}, 60000, 60000);
Man, just a question, How to stop this timer?
ReplyDeleteWhere in my code can I add this
ReplyDeleteWhere in my code can I add this
ReplyDeleteWhere in my code can I add this
ReplyDeleteit's not working
ReplyDelete