android鬧鐘(四):實現計時器

來源:互聯網
上載者:User

標籤:

 

TimerView.java

package com.mytest.myclock;import java.util.Timer;import java.util.TimerTask;import android.app.AlertDialog;import android.content.Context;import android.os.Handler;import android.util.AttributeSet;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.LinearLayout;import android.widget.TextView;public class TimerView extends LinearLayout {    public TimerView(Context context) {        super(context);        // TODO Auto-generated constructor stub    }    public TimerView(Context context, AttributeSet attrs, int defStyle) {        super(context, attrs, defStyle);        // TODO Auto-generated constructor stub    }    public TimerView(Context context, AttributeSet attrs) {        super(context, attrs);        // TODO Auto-generated constructor stub    }    private TextView tvHour;    private TextView tvMinute;    private TextView tvSecond;    private Button btnStart;    private Button btnStop;    @Override    protected void onFinishInflate() {        // TODO Auto-generated method stub        super.onFinishInflate();        init();    }    private void init() {        tvHour = (TextView) this.findViewById(R.id.timer_hour);        tvMinute = (TextView) this.findViewById(R.id.timer_mini);        tvSecond = (TextView) this.findViewById(R.id.timer_second);        btnStart = (Button) this.findViewById(R.id.btn_start_timer);        btnStop = (Button) this.findViewById(R.id.btn_stop_timer);        btnStop.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                stopTimer();            }        });        btnStart.setOnClickListener(new View.OnClickListener() {            @Override            public void onClick(View v) {                startTimer();            }        });    }    private final int WORK_STATE_STOP = 0; // 計時狀態,停止    private final int WORK_STATE_RUN = 1;// 計時狀態    private int userInputTime = 0;    private Timer timer;    private TimerTask task;    private Handler handler = new Handler() {        public void handleMessage(android.os.Message msg) {            switch(msg.what){            case WORK_STATE_RUN:                int hour =  userInputTime/60/60;                int minute = (userInputTime/60)%60;                int second = userInputTime%60;                tvHour.setText(""+hour);                tvMinute.setText(""+minute);                tvSecond.setText(""+second);                break;            case WORK_STATE_STOP:                new AlertDialog.Builder(getContext()).setTitle("時間到").setNegativeButton("取消", null).show();                stopTimer();                break;            }        };    };    private void startTimer() {        try {            userInputTime = (Integer.parseInt(tvHour.getText().toString()) * 60 * 60                    + Integer.parseInt(tvMinute.getText().toString()) * 60                    + Integer.parseInt(tvSecond.getText().toString()));        } catch (Exception e) {            Log.e("info", "TimerView->startTimer"+ e.getMessage());            return;        }                        timer = new Timer();        task = new TimerTask() {                        @Override            public void run() {                                userInputTime--;                handler.sendEmptyMessage(WORK_STATE_RUN);                if(userInputTime <=0){                    handler.sendEmptyMessage(WORK_STATE_STOP);                    stopTimer();                }                            }        };        timer.schedule(task, 1000,1000); //延遲一秒,再每隔一秒執行一次timertask.run()    }    private void stopTimer() {        if(task!=null){            task.cancel();            task = null;        }    }}
View Code

 

 

小結:

1、採用timer和timertask去重新整理時間;

2、擷取小時數應該採用hour =  userInputTime/60/60,而不能直接hour =  userInputTime/360.

android鬧鐘(四):實現計時器

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.