浅入浅出Android(012):Android下的计时器

使用线程

在线程里sleep即可。
Android 线程 thread 两种实现方法!

使用Timer

Android实现计时与倒计时的几种方法
Android 计时器Timer用法
Android中定时器Timer和TimerTask的启动,停止,暂停,继续等操作实例

使用CountDownTimer

CountDownTimer
android倒计时功能的实现(CountDownTimer)

使用Handler

How to limit record time with AudioRecord as MediaRecorder with setMaxDuration

handler=new Handler();
 Runnable r=new Runnable() 
{
 public void run() 
{
  recorder.stop();
   recorder.release(); 
  } 

};
handler.postDelayed(r, 120000);

你可能感兴趣的:(浅入浅出Android(012):Android下的计时器)