Android:タイマーTimerの停止と再起動を実現
17722 ワード
17年8月第1編ログ7月にプロジェクトを行い、カスタムコントロールでアニメーションを表示し、タイマを使用して時間を制御したが、起動を停止すると常に問題が発生した.ずっと合理的な方法を探してこの問題を解決して、ずっと探し当てていないで、最近やっと合理的な方法を見つけてこの問題を解決します.皆さんはどのように関連資料を調べて、きっとtimer、timertaskがキャンセルする方法はTimerを採用することを知っています.cancel()とmTimerTask.cancel()ですが、このヘアスタイルがキャンセルされたことに気づいて、再びtimerを開始すると、エラーが発生します.
この問題の解決はcancle()を採用し,timerをキャンセルした後,timerを空にする必要がある.合理的なコードは次のとおりです.
重要な問題が解決しました.次に私のケースコードMainactivityを示します.java:
xml部分コード:
string部分コード:
上は私のソースコードです.何か問題があれば、伝言を残して検討してください.
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部分コード:
<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部分コード:
<resources>
<string name="app_name">TimerDemostring>
<string name="number">0string>
<string name="start">startstring>
<string name="stop">stopstring>
<string name="pause">pausestring>
<string name="resume">resumestring>
resources>
上は私のソースコードです.何か問題があれば、伝言を残して検討してください.