处理程序,我想定期运行

时间:2013-07-31 05:00:22

标签: android handler ui-thread

使用处理程序想要定期运行计数为0,如果计数为1,否则请修复此代码。

mRunnable = new Runnable(){
@Override
public void run() {
if(count == 0){
setImage();
count = 1;
}
else{
weather = mContentResolver.getType(mUri);
setWeather(weather);
count = 0;
}
} 
};
mHandler = new Handler();
mHandler.postDelayed(mRunnable, 3000);

3 个答案:

答案 0 :(得分:9)

尝试以下

m_Handler = new Handler();
mRunnable = new Runnable(){
    @Override
    public void run() {
        if(count == 0){
            // do something
            count = 1;
        }
        else if (count==1){
            // do something
            count = 0;
        }
        m_Handler.postDelayed(mRunnable, 3000);// move this inside the run method
    } 
};
mRunnable.run(); // missing

同时检查此

Android Thread for a timer

答案 1 :(得分:2)

在这种情况下,您应该选择计时器 TimerTask 。以下是一个小例子:

//Declare the timer
Timer t = new Timer();
//Set the schedule function and rate
t.scheduleAtFixedRate(new TimerTask() {

    @Override
    public void run() {
        //Called each time when 1000 milliseconds (1 second) (the period parameter)
        //put your code here
    }

},
//Set how long before to start calling the TimerTask (in milliseconds)
0,
//Set the amount of time between each execution (in milliseconds)
3000);

希望这就是你所需要的。

答案 2 :(得分:0)

 private Handler handler = new Handler();
 handler.post(timedTask);

private Runnable timedTask = new Runnable(){

  @Override
  public void run() {
   // TODO Auto-generated method stub
   cnt++;
   if(cnt==0)
   {
    //set you view or update your 
   }

   handler.postDelayed(timedTask, 500);
  }};
}