0

在我的 android 应用程序中,我希望每 60 秒自动刷新一次。所以我这样尝试:

public void refresh_check() {
        Thread myThread = new Thread()
        {
            int counter = 0;
            @Override
            public void run() {
                MyActivity.this.runOnUiThread(new Runnable(){
                    @Override
                    public void run() {
                        while (counter < 60) {
                            try {
                                Thread.sleep(1000);
                                counter += 1;
                                System.out.println("Counter: " + counter);
                            } catch (InterruptedException e) {
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }
                        }
                        refresh();
                    }});
                super.run();
            }
        };
        myThread.start();       
    }

这以将计数器打印到 logcat 中的方式起作用,但在我的应用程序中,我得到一个黑色视图。refresh()只是一个带有http请求的函数,它单独工作,所以错误必须在任何地方的线程中:/有人可以帮忙吗?

4

1 回答 1

0

您没有Thread正确使用。在 UI 线程上运行长任务就像根本不使用 a 一样Thread。为了完成你需要的,你应该这样做:

public void refresh_check() {
        Thread myThread = new Thread()
        {
            int counter = 0;
            @Override
            public void run() {
                while (counter < 60) {
                            try {
                                Thread.sleep(1000);
                                counter += 1;
                                System.out.println("Counter: " + counter); //I think this may cause exception, if it does try removing it
                            } catch (InterruptedException e) { 
                                // TODO Auto-generated catch block
                                e.printStackTrace();
                            }
                        }
                        refresh(); // In refresh(), use TextView.post(runnable) to post update the TextView from outside the UI thread or use handlers
                    }});
                super.run();
            };
        myThread.start();       
    }

另外,看看 AsyncTask 类,它使您能够在 UI 线程 ( ) 之外运行长任务,并使用 ( )doInBackground()的结果更新 UIonPostExecute()

于 2013-04-01T08:48:06.117 回答