亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android定時器Timer的停止和重啟實現代碼

發布時間:2020-08-28 18:09:46 來源:腳本之家 閱讀:211 作者:中志融一 欄目:移動開發

本文介紹了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>

上面就是我的源代碼,如果大家有什么問題可以留言進行探討。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

仲巴县| 汨罗市| 望江县| 华宁县| 新田县| 汉阴县| 黑河市| 宜章县| 剑河县| 兴海县| 满城县| 三门县| 象山县| 九江县| 永川市| 惠来县| 松滋市| 天长市| 久治县| 永平县| 罗山县| 武清区| 余庆县| 萨迦县| 胶州市| 吉木萨尔县| 百色市| 安顺市| 屏东县| 尤溪县| 崇左市| 平顺县| 揭东县| 太白县| 包头市| 望江县| 廉江市| 弥渡县| 油尖旺区| 财经| 镇巴县|