当前位置: 首页 > 编程笔记 >

Android定时器Timer的停止和重启实现代码

易俊友
2023-03-14
本文向大家介绍Android定时器Timer的停止和重启实现代码,包括了Android定时器Timer的停止和重启实现代码的使用技巧和注意事项,需要的朋友参考一下

本文介绍了Android定时器Timer的停止和重启实现代码,分享给大家,具体如下:

7月份做了一个项目,利用自定义控件呈现一幅动画,当时使用定时器来控制时间,但是当停止开启时总是出现问题。一直在寻找合理的方法解决这个问题,一直没有找到,最近终于找到了合理的方法来解决这个问题。

大家如何查询有关资料,一定知道timer,timertask取消的方式是采用Timer.cancel()和mTimerTask.cancel(),可是大家发现这种发式取消后,再次开始timer时,会报错

 FATAL EXCEPTION: main
         Process: com.example.zhongzhi.gate_control_scheme, PID: 2472
         java.lang.IllegalStateException: Timer already cancelled.
           at java.util.Timer.sched(Timer.java:397)
           at java.util.Timer.schedule(Timer.java:248)
           at com.example.zhongzhi.gate_control_scheme.MainActivity.onClick(MainActivity.java:401)
           at android.view.View.performClick(View.java:5637)
           at android.view.View$PerformClick.run(View.java:22429)
           at android.os.Handler.handleCallback(Handler.java:751)
           at android.os.Handler.dispatchMessage(Handler.java:95)
           at android.os.Looper.loop(Looper.java:154)
           at android.app.ActivityThread.main(ActivityThread.java:6119)
           at java.lang.reflect.Method.invoke(Native Method)
           at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
           at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)

 这个问题的解决采用cancle(),取消timer后,还需要清空timer。合理的代码应该是这样的:

mTimer.cancel();
mTimer = null;
mTimerTask.cancel();
mTimerTask = null;

关键的问题解决完了,下面给出我的案例代码Mainactivity.Java:

public class MainActivity extends AppCompatActivity {

  private static String TAG = "TimerDemo";
  private TextView mTextView = null;
  private Button mButton_start = null;
  private Button mButton_pause = null;
  private Timer mTimer = null;
  private TimerTask mTimerTask = null;
  private Handler mHandler = null;
  private static int count = 0;
  private boolean isPause = false;
  private boolean isStop = true;
  private static int delay = 1000; //1s
  private static int period = 1000; //1s
  private static final int UPDATE_TEXTVIEW = 0;

  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mTextView = (TextView)findViewById(R.id.mytextview);
    mButton_start = (Button)findViewById(R.id.mybutton_start);
    mButton_pause = (Button)findViewById(R.id.mybutton_pause);


    mButton_start.setOnClickListener(new Button.OnClickListener() {
      public void onClick(View v) {
        if (isStop) {
          Log.i(TAG, "Start");
        } else {
          Log.i(TAG, "Stop");
        }

        isStop = !isStop;

        if (!isStop) {
          startTimer();
        }else {
          stopTimer();
        }

        if (isStop) {
          mButton_start.setText(R.string.start);
        } else {
          mButton_start.setText(R.string.stop);
        }
      }
    });

    mButton_pause.setOnClickListener(new Button.OnClickListener() {
      public void onClick(View v) {
        if (isPause) {
          Log.i(TAG, "Resume");
        } else {
          Log.i(TAG, "Pause");
        }

        isPause = !isPause;

        if (isPause) {
          mButton_pause.setText(R.string.resume);
        } else {
          mButton_pause.setText(R.string.pause);
        }
      }
    });

    mHandler = new Handler(){
      @Override
      public void handleMessage(Message msg) {
        switch (msg.what) {
          case UPDATE_TEXTVIEW:
            updateTextView();
            break;
          default:
            break;
        }
      }
    };
  }

  private void updateTextView(){
    mTextView.setText(String.valueOf(count));
  }

  private void startTimer(){
    if (mTimer == null) {
      mTimer = new Timer();
    }

    if (mTimerTask == null) {
      mTimerTask = new TimerTask() {
        @Override
        public void run() {
          Log.i(TAG, "count: "+String.valueOf(count));
          sendMessage(UPDATE_TEXTVIEW);

          do {
            try {
              Log.i(TAG, "sleep(1000)...");
              Thread.sleep(1000);
            } catch (InterruptedException e) {
            }
          } while (isPause);

          count ++;
        }
      };
    }

    if(mTimer != null && mTimerTask != null )
      mTimer.schedule(mTimerTask, delay, period);

  }

  private void stopTimer(){
    if (mTimer != null) {
      mTimer.cancel();
      mTimer = null;
    }
    if (mTimerTask != null) {
      mTimerTask.cancel();
      mTimerTask = null;
    }
    count = 0;
  }

  public void sendMessage(int id){
    if (mHandler != null) {
      Message message = Message.obtain(mHandler, id);
      mHandler.sendMessage(message);
    }
  }
}

xml部分代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"
  android:orientation="vertical" >
  <TextView
    android:id="@+id/mytextview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="@string/number" />

  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="horizontal" >

    <Button
      android:id="@+id/mybutton_start"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/start" />

    <Button
      android:id="@+id/mybutton_pause"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/pause" />
  </LinearLayout>
</LinearLayout>

string部分代码:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <string name="app_name">TimerDemo</string>
  <string name="number">0</string>
  <string name="start">start</string>
  <string name="stop">stop</string>
  <string name="pause">pause</string>
  <string name="resume">resume</string>
</resources>

上面就是我的源代码,如果大家有什么问题可以留言进行探讨。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 本文档叙述了在类Unix系统上如何停止和重启Apache 。 Windows NT/2000/XP/2003的用户请参见以服务方式运行Apache ,Windows 9x/ME用户则参见在控制台中运行Apache 。 简介 为了停止或者重新启动Apache ,你必须向正在运行的httpd进程发送信号。有两种发送信号的方法。第一种方法是直接使用UNIX的kill命令向运行中的进程发送信号。你也许你会

  • 问题内容: 我需要一些有关在PHP中启动和停止计时器的信息。我需要测量从我的.exe程序开始(我在PHP脚本中使用函数)到完成执行并显示所花费的时间(以秒为单位)之后经过的时间。 我怎样才能做到这一点? 问题答案: 您可以使用并计算差异: 这是PHP的文档:http : //php.net/manual/zh/function.microtime.php

  • 稳定性: 2 - 稳定的 timer 模块暴露了一个全局的 API,用于在某个未来时间段调用调度函数。 因为定时器函数是全局的,所以使用该 API 无需调用 require('timers')。 Node.js 中的计时器函数实现了与 Web 浏览器提供的定时器类似的 API,除了它使用了一个不同的内部实现,它是基于 Node.js 事件循环构建的。 Immediate 类 该对象是内部创建的,并

  • 毫秒精度的定时器。底层基于epoll_wait和setitimer实现,数据结构使用最小堆,可支持添加大量定时器。 在同步IO进程中使用setitimer和信号实现,如Manager和TaskWorker进程 在异步IO进程中使用epoll_wait/kevent/poll/select超时时间实现 性能 底层使用最小堆数据结构实现定时器,定时器的添加和删除,全部为内存操作,因此性能是非常高的。

  • 我找到了一个很好的QRcode/条形码识别代码——它工作得很好,但是!它不停地工作。检测到的代码以条形码文本显示,但方法/proces/camera(initialiseDetectorsAndSources())仍在工作。我尝试了一些方法来阻止它,并找到了那个摄像源。release()在某种程度上起作用了:相机停止了,但我不确定探测器进程是否仍在后台某处运行?。然后,我添加了一个按钮,再次启动i

  • 本文向大家介绍Java 定时器(Timer,TimerTask)详解及实例代码,包括了Java 定时器(Timer,TimerTask)详解及实例代码的使用技巧和注意事项,需要的朋友参考一下  Java 定时器 在JAVA中实现定时器功能要用的二个类是Timer,TimerTask Timer类是用来执行任务的类,它接受一个TimerTask做参数 Timer有两种执行任务的模式,最常用的是sch