アンドロイドのCountDownTimerの例についての説明です。
このAndroidカウントダウンタイマーの例では、進行状況をプログレスバーで表示するためのタイマーオブジェクトを実装します。このチュートリアルで構築するアプリケーションは、クイズアプリの中で、レベルを完了するための残り時間が視覚的に表示されることで、ユーザーエクスペリエンスが向上する有用なコンポーネントです。
アンドロイドのカウントダウンタイマー
AndroidのCountDownTimerクラスは、ユーザーが定義した将来の時間までのカウントダウンをスケジュールし、途中で定期的な通知を行うために使用されます。このクラスは抽象クラスであり、プロジェクトに実装するためには、メソッドをオーバーライドする必要があります。以下の行をアクティビティに追加する必要があります:import android.os.CountDownTimer; CountDownTimerクラスの関連メソッドは以下の通りです。
-
- 同期化された最終的なキャンセルメソッド : これはカウントダウンをキャンセルするために使用されます
-
- 抽象メソッドonFinish() : タイマーが終了した時に呼び出されるこのコールバックメソッド
-
- 抽象メソッドonTick(long millisUntilFinished) : 定期的な間隔で呼び出されるこのコールバックメソッド
- 同期化された最終的なCountDownTimer start() : このメソッドはカウントダウンを開始するために使用されます
CountDownTimerクラスの公開コンストラクタのシグネチャは、次のように与えられます。CountDownTimer(long millisInFuture, long countDownInterval) コンストラクタのパラメータは、以下のように定義されます:
- millisInFuture : The number of milli seconds in the future from the call to start() until the countdown is done and onFinish() is called
- countDownInterval : The interval along the way to receive onTick(long) callbacks
このプロジェクトでは、onTick() メソッドが繰り返し呼び出されるたびに、ProgressBar の時間値を更新します。
アンドロイドのカウントダウンタイマーの例のプロジェクト構造
アンドロイドのカウントダウンタイマーのコード
activity_main.xmlは、開始ボタンと停止ボタンの2つのボタンと、時間を表示するためのプログレスバーから構成されています。
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="false"
android:max="10"
android:minHeight="50dp"
android:minWidth="200dp"
android:progress="0"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Start Timer"
android:id="@+id/button"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="61dp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Stop Timer"
android:id="@+id/button2"
android:layout_centerHorizontal="true"
android:layout_marginTop="46dp"
android:layout_below="@+id/progressBar" />
</RelativeLayout>
以下にはMainActivity.javaがあります。
package com.scdev.countdowntimer;
import android.os.CountDownTimer;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;
import android.widget.ProgressBar;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
ProgressBar progressBar;
Button start_timer,stop_timer;
MyCountDownTimer myCountDownTimer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
progressBar=(ProgressBar)findViewById(R.id.progressBar);
start_timer=(Button)findViewById(R.id.button);
stop_timer=(Button)findViewById(R.id.button2);
start_timer.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
myCountDownTimer = new MyCountDownTimer(10000, 1000);
myCountDownTimer.start();
}
});
stop_timer.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
myCountDownTimer.cancel();
}
});
}
public class MyCountDownTimer extends CountDownTimer {
public MyCountDownTimer(long millisInFuture, long countDownInterval) {
super(millisInFuture, countDownInterval);
}
@Override
public void onTick(long millisUntilFinished) {
int progress = (int) (millisUntilFinished/1000);
progressBar.setProgress(progressBar.getMax()-progress);
}
@Override
public void onFinish() {
finish();
}
}
}
「AndroidのCountDownTimerとProgressBarプロジェクトをダウンロードします」
参考:公式ドキュメント