刷新页面

时间:2010-03-29 12:21:07

标签: android

我正在开发聊天应用程序但是通过使用该应用程序,两个人没有正确地收到聊天消息。如果一个人发送聊天消息给其他人没有立即收到它。为此我想要刷新该应用程序为什么可以我呢?给我一些建议。谢谢你提前

1 个答案:

答案 0 :(得分:0)

首先在您的活动中全局声明WebView控件。

WebView wvWebView;

现在将网页加载到

//created an instance of the webview from the XML layout.
wvWebView = (WebView) findViewById(R.id.mywebview);

//then open your web page in the web view
wvWebView.loadUrl("http://....");

//now schedule a timer which will reload/refresh the page every 60 seconds.
new Timer().schedule(new TimerTask(){
        @Override
        public void run() {
            // TODO Auto-generated method stub
             wvWebView.reload();
        }}, 60000, 60000);

我希望这会对你有所帮助。