Showing posts with label Refresh or Reload webpage automatically in android webview. Show all posts
Showing posts with label Refresh or Reload webpage automatically in android webview. Show all posts

Saturday, September 13, 2014

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);