不断更新UI android

时间:2015-09-19 10:05:12

标签: android asynchronous service timer

在我的应用程序中,我希望在2秒后连续更新我的UI。哪种更新方式最合适。

  1. 定时器
  2. 异步任务或其他任何内容?

1 个答案:

答案 0 :(得分:2)

定义Runnable:

private Runnable mRunnable = new Runnable() {
    @Override
    public void run() {
       //Update to your UI
    }
};

在您的连续线程内:

runOnUiThread(mRunnable);