重复执行某个任务有时间延迟吗?


216

我的代码中有一个变量说它是“状态”。

我想根据此变量值在应用程序中显示一些文本。这必须在特定的时间延迟内完成。

就像是,

  • 检查状态变量值

  • 显示一些文字

  • 等待10秒

  • 检查状态变量值

  • 显示一些文字

  • 等待15秒

等等。时间延迟可能会有所不同,并且在显示文本后进行设置。

我尝试过Thread.sleep(time delay),但失败了。有什么更好的方法可以做到这一点?


Answers:


448

为此,您应该使用HandlerpostDelayed功能。它将在主UI线程上以指定的延迟运行您的代码,因此您将能够更新UI控件。

private int mInterval = 5000; // 5 seconds by default, can be changed later
private Handler mHandler;

@Override
protected void onCreate(Bundle bundle) {

    // your code here

    mHandler = new Handler();
    startRepeatingTask();
}

@Override
public void onDestroy() {
    super.onDestroy();
    stopRepeatingTask();
}

Runnable mStatusChecker = new Runnable() {
    @Override 
    public void run() {
          try {
               updateStatus(); //this function can change value of mInterval.
          } finally {
               // 100% guarantee that this always happens, even if
               // your update method throws an exception
               mHandler.postDelayed(mStatusChecker, mInterval);
          }
    }
};

void startRepeatingTask() {
    mStatusChecker.run(); 
}

void stopRepeatingTask() {
    mHandler.removeCallbacks(mStatusChecker);
}

1
谢谢inazaruk,设法使它起作用。发现2个小错字(顶部是“处理程序”而不是“句柄”,底部是“ removeCallbacks”没有删除“ removecallback”。但是无论如何,代码正是我在寻找的东西。尝试思考我可以做什么) 。做报恩至少,你已赢得了我的尊重亲切的问候奥布里伯克。
aubreybourke

20
不错的程序,绝对可以。但是必须从onCreate方法/ UI线程中调用startRepeatingTask()(花了我一些时间才意识到这一点!),也许这一点可能已经在某处提到过了。问候
gkris

1
你的答案一直在给。今天这帮助我摆脱了困境。谢谢。
Dean Blakely 2013年

有什么办法可以在适配器的getView()方法中重复使用Runnable吗?
toobsco42 2014年

1
在这里,当我们导入类时,我们应该导入什么?android.os.Handler或java.util.logging.Handler?
EJ Chathuranga

34

对任何感兴趣的人来说,这是我使用inazaruk的代码创建的类,该类创建所需的所有内容(我将其称为UIUpdater,因为我使用它来定期更新UI,但是您可以随意调用它):

import android.os.Handler;
/**
 * A class used to perform periodical updates,
 * specified inside a runnable object. An update interval
 * may be specified (otherwise, the class will perform the 
 * update every 2 seconds).
 * 
 * @author Carlos Simões
 */
public class UIUpdater {
        // Create a Handler that uses the Main Looper to run in
        private Handler mHandler = new Handler(Looper.getMainLooper());

        private Runnable mStatusChecker;
        private int UPDATE_INTERVAL = 2000;

        /**
         * Creates an UIUpdater object, that can be used to
         * perform UIUpdates on a specified time interval.
         * 
         * @param uiUpdater A runnable containing the update routine.
         */
        public UIUpdater(final Runnable uiUpdater) {
            mStatusChecker = new Runnable() {
                @Override
                public void run() {
                    // Run the passed runnable
                    uiUpdater.run();
                    // Re-run it after the update interval
                    mHandler.postDelayed(this, UPDATE_INTERVAL);
                }
            };
        }

        /**
         * The same as the default constructor, but specifying the
         * intended update interval.
         * 
         * @param uiUpdater A runnable containing the update routine.
         * @param interval  The interval over which the routine
         *                  should run (milliseconds).
         */
        public UIUpdater(Runnable uiUpdater, int interval){
            UPDATE_INTERVAL = interval;
            this(uiUpdater);
        }

        /**
         * Starts the periodical update routine (mStatusChecker 
         * adds the callback to the handler).
         */
        public synchronized void startUpdates(){
            mStatusChecker.run();
        }

        /**
         * Stops the periodical update routine from running,
         * by removing the callback.
         */
        public synchronized void stopUpdates(){
            mHandler.removeCallbacks(mStatusChecker);
        }
}

然后,您可以在类内创建一个UIUpdater对象,并按如下方式使用它:

...
mUIUpdater = new UIUpdater(new Runnable() {
         @Override 
         public void run() {
            // do stuff ...
         }
    });

// Start updates
mUIUpdater.startUpdates();

// Stop updates
mUIUpdater.stopUpdates();
...

如果要将其用作活动更新程序,请将start调用放在onResume()方法内部,将stop调用放在onPause()内部,以便根据活动可见性开始和停止更新。


1
编辑: UPDATE_INTERVAL = interval;应该 this(uiUpdater); in 之前UIUpdater(Runnable uiUpdater, int interval)(因为使用的值, UPDATE_INTERVAL并且应该作为参数传递的值interval;)。还要尽可能避免代码中超过80个字符的宽度(几乎总是;)
Mr_and_Mrs_D 2013年

5
该课程有很多问题。首先,应该在主线程中实例化它以便能够更新GUI。您可以通过将主循环传递给处理程序构造函数来解决此问题new Handler(Looper.getMainLooper())。其次,它不验证参数,因此它吞噬了空的Runnable和负间隔。最后,它没有考虑花费在uiUpdater.run()生产线上的时间,也没有处理该方法抛出的可能异常。而且它也不是线程安全的,您应该使startstop同步的方法。
史密斯先生

2
编辑直到参数验证部分,因为我在这里没有Eclipse来测试代码。感谢您的反馈!这是你的意思吗?同步startUpdates和stopUpdates并将Looper.getMainLooper()调用放入Handler构造函数中(我希望您可以从字段声明中直接调用它)
ravemir 2013年

2
我明白了:error: call to this must be first statement in constructor也许有一个简单的解决方法。
msysmilu 2015年

4
Upvoting具有进口-需要时间来找出处理程序来自于Java的编程随便当
罗马王莲香

23

我认为新的热点是使用ScheduledThreadPoolExecutor。像这样:

private final ScheduledThreadPoolExecutor executor_ = 
        new ScheduledThreadPoolExecutor(1);
this.executor_.scheduleWithFixedDelay(new Runnable() {
@Override
public void run() {
    update();
    }
}, 0L, kPeriod, kTimeUnit);

Executors.newSingleThreadScheduledExecutor()在这里可以是另一个选择。
Gulshan

13

计时器工作正常。在这里,我使用Timer在1.5秒后搜索文本并更新UI。希望能有所帮助。

private Timer _timer = new Timer();

_timer.schedule(new TimerTask() {
    @Override
    public void run() {
        // use runOnUiThread(Runnable action)
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                search();
            }
        });
    }
}, timeInterval);

您将间隔时间放在哪里?
纳西尔·巴罗斯

1
嗨纳西尔,我刚刚更新了我的帖子,希望对您有所帮助!间隔时间是Timer.schedule()的第二个参数。
Kai

7

有3种方法可以做到:

使用ScheduledThreadPoolExecutor

有点多余,因为您不需要线程池

   //----------------------SCHEDULER-------------------------
    private final ScheduledThreadPoolExecutor executor_ =
            new ScheduledThreadPoolExecutor(1);
     ScheduledFuture<?> schedulerFuture;
   public void  startScheduler() {
       schedulerFuture=  executor_.scheduleWithFixedDelay(new Runnable() {
            @Override
            public void run() {
                //DO YOUR THINGS
                pageIndexSwitcher.setVisibility(View.GONE);
            }
        }, 0L, 5*MILLI_SEC,  TimeUnit.MILLISECONDS);
    }


    public void  stopScheduler() {
        pageIndexSwitcher.setVisibility(View.VISIBLE);
        schedulerFuture.cancel(false);
        startScheduler();
    }

使用计时器任务

旧的Android风格

    //----------------------TIMER  TASK-------------------------

    private Timer carousalTimer;
    private void startTimer() {
        carousalTimer = new Timer(); // At this line a new Thread will be created
        carousalTimer.scheduleAtFixedRate(new TimerTask() {
            @Override
            public void run() {
                //DO YOUR THINGS
                pageIndexSwitcher.setVisibility(INVISIBLE);
            }
        }, 0, 5 * MILLI_SEC); // delay
    }

    void stopTimer() {
        carousalTimer.cancel();
    }

使用处理程序和可运行

现代Android风格

    //----------------------HANDLER-------------------------

    private Handler taskHandler = new android.os.Handler();

    private Runnable repeatativeTaskRunnable = new Runnable() {
        public void run() {
            //DO YOUR THINGS
        }
    };

   void startHandler() {
        taskHandler.postDelayed(repeatativeTaskRunnable, 5 * MILLI_SEC);
    }

    void stopHandler() {
        taskHandler.removeCallbacks(repeatativeTaskRunnable);
    }

具有活动/上下文的非泄漏处理程序

声明一个内部Handler类,该类不会泄漏 Activity / Fragment类中的内存

/**
     * Instances of static inner classes do not hold an implicit
     * reference to their outer class.
     */
    private static class NonLeakyHandler extends Handler {
        private final WeakReference<FlashActivity> mActivity;

        public NonLeakyHandler(FlashActivity activity) {
            mActivity = new WeakReference<FlashActivity>(activity);
        }

        @Override
        public void handleMessage(Message msg) {
            FlashActivity activity = mActivity.get();
            if (activity != null) {
                // ...
            }
        }
    }

声明一个可运行对象,它将在Activity / Fragment类中执行您的重复任务

   private Runnable repeatativeTaskRunnable = new Runnable() {
        public void run() {
            new Handler(getMainLooper()).post(new Runnable() {
                @Override
                public void run() {

         //DO YOUR THINGS
        }
    };

在您的“活动/片段”中初始化Handler对象(此处FlashActivity是我的活动类)

//Task Handler
private Handler taskHandler = new NonLeakyHandler(FlashActivity.this);

在固定时间间隔后重复执行任务

taskHandler.postDelayed(repeatativeTaskRunnable,DELAY_MILLIS);

停止重复任务

taskHandler .removeCallbacks(repeatativeTaskRunnable);

更新:在科特林:

    //update interval for widget
    override val UPDATE_INTERVAL = 1000L

    //Handler to repeat update
    private val updateWidgetHandler = Handler()

    //runnable to update widget
    private var updateWidgetRunnable: Runnable = Runnable {
        run {
            //Update UI
            updateWidget()
            // Re-run it after the update interval
            updateWidgetHandler.postDelayed(updateWidgetRunnable, UPDATE_INTERVAL)
        }

    }

 // SATART updating in foreground
 override fun onResume() {
        super.onResume()
        updateWidgetHandler.postDelayed(updateWidgetRunnable, UPDATE_INTERVAL)
    }


    // REMOVE callback if app in background
    override fun onPause() {
        super.onPause()
        updateWidgetHandler.removeCallbacks(updateWidgetRunnable);
    }

6

计时器是完成工作的另一种方法,但是请注意,runOnUiThread如果要使用UI,请务必添加计时器。

    import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Timer;
import java.util.TimerTask;

import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.TextView;
import android.app.Activity;

public class MainActivity extends Activity {

 CheckBox optSingleShot;
 Button btnStart, btnCancel;
 TextView textCounter;

 Timer timer;
 MyTimerTask myTimerTask;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  optSingleShot = (CheckBox)findViewById(R.id.singleshot);
  btnStart = (Button)findViewById(R.id.start);
  btnCancel = (Button)findViewById(R.id.cancel);
  textCounter = (TextView)findViewById(R.id.counter);

  btnStart.setOnClickListener(new OnClickListener(){

   @Override
   public void onClick(View arg0) {

    if(timer != null){
     timer.cancel();
    }

    //re-schedule timer here
    //otherwise, IllegalStateException of
    //"TimerTask is scheduled already" 
    //will be thrown
    timer = new Timer();
    myTimerTask = new MyTimerTask();

    if(optSingleShot.isChecked()){
     //singleshot delay 1000 ms
     timer.schedule(myTimerTask, 1000);
    }else{
     //delay 1000ms, repeat in 5000ms
     timer.schedule(myTimerTask, 1000, 5000);
    }
   }});

  btnCancel.setOnClickListener(new OnClickListener(){

   @Override
   public void onClick(View v) {
    if (timer!=null){
     timer.cancel();
     timer = null;
    }
   }
  });

 }

 class MyTimerTask extends TimerTask {

  @Override
  public void run() {
   Calendar calendar = Calendar.getInstance();
   SimpleDateFormat simpleDateFormat = 
     new SimpleDateFormat("dd:MMMM:yyyy HH:mm:ss a");
   final String strDate = simpleDateFormat.format(calendar.getTime());

   runOnUiThread(new Runnable(){

    @Override
    public void run() {
     textCounter.setText(strDate);
    }});
  }

 }

}

和xml是...

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:orientation="vertical"
tools:context=".MainActivity" >

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:autoLink="web"
    android:text="http://android-er.blogspot.com/"
    android:textStyle="bold" />
<CheckBox 
    android:id="@+id/singleshot"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Single Shot"/>

使用CountDownTimer的另一种方法

new CountDownTimer(30000, 1000) {

     public void onTick(long millisUntilFinished) {
         mTextField.setText("seconds remaining: " + millisUntilFinished / 1000);
     }

     public void onFinish() {
         mTextField.setText("done!");
     }
  }.start();

将倒计时安排到将来的某个时间,并在此期间定期进行通知。在文本字段中显示30秒倒计时的示例:

详情


1
处理程序优于计时器。参见计时器与处理程序
-Suragch

4

尝试下面的例子,它的工作原理!

在onCreate()方法中使用[Handler],该方法利用postDelayed()方法,该方法导致将Runnable添加到消息队列中,在给定示例中经过指定的时间量为0后运行。1个

参考此代码:

public void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
       setContentView(R.layout.main);
    //------------------
    //------------------
    android.os.Handler customHandler = new android.os.Handler();
            customHandler.postDelayed(updateTimerThread, 0);
}

private Runnable updateTimerThread = new Runnable()
{
        public void run()
        {
            //write here whaterver you want to repeat
            customHandler.postDelayed(this, 1000);
        }
};



4

基于以上有关ScheduledThreadPoolExecutor的帖子,我想出了一个适合我需要的实用程序(希望每3秒触发一种方法):

class MyActivity {
    private ScheduledThreadPoolExecutor mDialogDaemon;

    private void initDebugButtons() {
        Button btnSpawnDialogs = (Button)findViewById(R.id.btn_spawn_dialogs);
        btnSpawnDialogs.setVisibility(View.VISIBLE);
        btnSpawnDialogs.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View view) {
                spawnDialogs();
            }
        });
    }

    private void spawnDialogs() {
        if (mDialogDaemon != null) {
            mDialogDaemon.shutdown();
            mDialogDaemon = null;
        }
        mDialogDaemon = new ScheduledThreadPoolExecutor(1);
        // This process will execute immediately, then execute every 3 seconds.
        mDialogDaemon.scheduleAtFixedRate(new Runnable() {
            @Override
            public void run() {
                runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        // Do something worthwhile
                    }
                });
            }
        }, 0L, 3000L, TimeUnit.MILLISECONDS);
    }
}

4

就我而言,如果满足以下条件之一,则必须执行一个过程:如果先前的过程已完成,或者已经过了5秒钟。因此,我做了以下工作,并表现良好:

private Runnable mStatusChecker;
private Handler mHandler;

class {
method() {
  mStatusChecker = new Runnable() {
            int times = 0;
            @Override
            public void run() {
                if (times < 5) {
                    if (process1.isRead()) {
                        executeProcess2();
                    } else {
                        times++;
                        mHandler.postDelayed(mStatusChecker, 1000);
                    }
                } else {
                    executeProcess2();
                }
            }
        };

        mHandler = new Handler();
        startRepeatingTask();
}

    void startRepeatingTask() {
       mStatusChecker.run();
    }

    void stopRepeatingTask() {
        mHandler.removeCallbacks(mStatusChecker);
    }


}

如果读取到process1,它将执行process2。如果不是,它将增加可变时间,并使一秒钟后执行Handler。它一直保持循环,直到读取process1或times为5。当times为5时,这意味着经过了5秒,并且每秒执行一次process1.isRead()的if子句。


1

使用kotlin及其协程非常简单,首先在您的类中声明一个工作(在viewModel中更好),如下所示:

private var repeatableJob: Job? = null

然后,当您要创建并启动它时,请执行以下操作:

repeatableJob = viewModelScope.launch {
    while (isActive) {
         delay(5_000)
         loadAlbums(iImageAPI, titleHeader, true)
    }
}
repeatableJob?.start()

如果要完成它:

repeatableJob?.cancel()

PS:viewModelScope仅在视图模型中可用,您可以使用其他协程范围,例如withContext(Dispatchers.IO)

更多信息:这里


0

对于使用Kotlin的人,inazaruk的答案将不起作用,IDE将要求初始化该变量,因此,我们将在单独的方法中使用它,而不是在postDelayed内部Runnable使用。

  • Runnable像这样初始化您的:

    private var myRunnable = Runnable {
        //Do some work
        //Magic happens here ↓
        runDelayedHandler(1000)   }
  • runDelayedHandler像这样初始化您的方法:

     private fun runDelayedHandler(timeToWait : Long) {
        if (!keepRunning) {
            //Stop your handler
            handler.removeCallbacksAndMessages(null)
            //Do something here, this acts like onHandlerStop
        }
        else {
            //Keep it running
            handler.postDelayed(myRunnable, timeToWait)
        }
    }
  • 如您所见,这种方法将使您能够控制任务keepRunning的生命周期,在应用程序的生命周期内跟踪和更改任务将为您完成工作。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.