您好,登錄后才能下訂單哦!
怎么在Android中利用CountDownTimer類實現一個倒計時鬧鐘?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
MainActivity:
package com.home.brewclock; import android.app.Activity; import android.media.MediaPlayer; import android.os.Bundle; import android.os.CountDownTimer; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.TextView; public class MainActivity extends Activity implements OnClickListener { private Button addTimeBtn; private Button decreaseTimeBtn; private Button startBtn; private Button closeMusicBtn; private TextView timeText; private int brewTime = 3; private CountDownTimer countDownTimer; private boolean isBrewing = false; private MediaPlayer alarmMusic; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); addTimeBtn = (Button) findViewById(R.id.main_btn_up); decreaseTimeBtn = (Button) findViewById(R.id.main_btn_down); startBtn = (Button) findViewById(R.id.main_start); closeMusicBtn = (Button) findViewById(R.id.main_btn_close_music); timeText = (TextView) findViewById(R.id.main_tv); addTimeBtn.setOnClickListener(this); decreaseTimeBtn.setOnClickListener(this); startBtn.setOnClickListener(this); closeMusicBtn.setOnClickListener(this); setBrewTime(3); } /** * 設置鬧鐘倒計時初始值 * * @param minutes */ public void setBrewTime(int minutes) { if (isBrewing) return; brewTime = minutes; if (brewTime < 1) { brewTime = 1; } timeText.setText(String.valueOf(brewTime) + "m"); } /** * 開啟鬧鐘 */ public void startBrew() { // 創建一個CountDownTimer對象記錄鬧鐘時間 countDownTimer = new CountDownTimer(brewTime * 60 * 1000, 1000) { @Override public void onTick(long millisUntilFinished) { timeText.setText(String.valueOf(millisUntilFinished / 1000) + "s"); } @Override public void onFinish() { isBrewing = false; timeText.setText(brewTime + "m"); startBtn.setText("Start"); // 加載指定音樂,并為之創建MediaPlayer對象 alarmMusic = MediaPlayer.create(MainActivity.this, R.raw.music); // 設置為循環播放 alarmMusic.setLooping(true); // 播放音樂 alarmMusic.start(); closeMusicBtn.setVisibility(0); } }; countDownTimer.start(); startBtn.setText("Stop"); isBrewing = true; } /** * 停止計時 */ public void stopBrew() { if (countDownTimer != null) { countDownTimer.cancel(); } isBrewing = false; startBtn.setText("Start"); } @Override public void onClick(View v) { if (v == addTimeBtn) { setBrewTime(brewTime + 1); } else if (v == decreaseTimeBtn) { setBrewTime(brewTime - 1); } else if (v == startBtn) { if (isBrewing) { stopBrew(); } else { startBrew(); } } else if (v == closeMusicBtn) { if (alarmMusic != null) { alarmMusic.stop(); closeMusicBtn.setVisibility(8); } } } }
布局文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <Button android:id="@+id/main_btn_close_music" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="關閉音樂" android:visibility="gone" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_centerInParent="true" android:gravity="center" android:orientation="horizontal" > <Button android:id="@+id/main_btn_down" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="-" android:textSize="40dp" /> <TextView android:id="@+id/main_tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:text="0:00" android:textSize="40dp" /> <Button android:id="@+id/main_btn_up" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="+" android:textSize="40dp" /> </LinearLayout> <Button android:id="@+id/main_start" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:text="Start" /> </RelativeLayout>
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。