成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

Android自定義view倒計時60秒

一個簡單的自定義view。在里面封裝了時間的倒計時,以及距離現(xiàn)在時間的時間計算

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、微信平臺小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了西陵免費(fèi)建站歡迎大家使用!

public class TimerTextView extends LinearLayout{
  // 時間變量
  private long second;
  private TextView tv_Time;
  private TextView tv_Unit;
  RefreshCallBack refreshCallBack;
 
  public TimerTextView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    initView(context);
  }
 
  public TimerTextView(Context context, AttributeSet attrs) {
    super(context, attrs);
    initView(context);
  }
 
  public TimerTextView(Context context) {
    super(context);
    initView(context);
  }
 
  private void initView(Context context) {
    // 加載布局
    LayoutInflater.from(context).inflate(R.layout.timer_text_view, this);
    tv_Time = (TextView) findViewById(R.id.countdown_time);
    tv_Unit = (TextView) findViewById(R.id.countdown_unit);
  }
 
  @Override
  protected void onDetachedFromWindow() {
    super.onDetachedFromWindow();
    // 在控件被銷毀時移除消息
    handler.removeMessages(0);
  }
 
  private boolean isRun = true; // 是否啟動了
  private Handler handler = new Handler(Looper.getMainLooper()) {
    @Override
    public void handleMessage(Message msg) {
      switch (msg.what) {
        case 0:
          if (isRun) {
            if (second > 0) {
              second = second - 1;
              handler.sendEmptyMessageDelayed(0, 1000);
            }else{
              if(null != refreshCallBack){
                refreshCallBack.refreshCallBack(true);
                isRun = false;
              }
            }
          }
          break;
      }
    }
  };
 
 
  public boolean isRun() {
    return isRun;
  }
 
  /**
   * 開始計時
   */
  public void start() {
    isRun = true;
    handler.removeMessages(0);
    handler.sendEmptyMessage(0);
  }
 
  /**
   * 結(jié)束計時
   */
  public void stop() {
    isRun = false;
  }
 
  public void diffTime(String endTime) {
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.CHINA);
    String startTime = sdf.format(new Date());
    String format = "yyyy-MM-dd hh:mm:ss";
    //按照傳入的格式生成一個simpledateformate對象
    SimpleDateFormat sd = new SimpleDateFormat(format);
 
    long nd = 1000 * 24 * 60 * 60;//一天的毫秒數(shù)
    long nh = 1000 * 60 * 60;//一小時的毫秒數(shù)
    long nm = 1000 * 60;//一分鐘的毫秒數(shù)
    long ns = 1000;//一秒鐘的毫秒數(shù)long diff;try {
    //獲得兩個時間的毫秒時間差異
    long diff = 0;
    try {
      diff = sd.parse(endTime).getTime() - sd.parse(startTime).getTime();
    } catch (ParseException e) {
      e.printStackTrace();
    }
    if (diff < 0) {
      if(null != refreshCallBack){
        refreshCallBack.showCallBack(false);
      }
      return ;
    } else {
      if(null != refreshCallBack){
        refreshCallBack.showCallBack(true);
      }
      long day = diff / nd;//計算差多少天
      if (day > 0) {
        tv_Time.setText(String.valueOf(day));
        tv_Unit.setText("天");
      } else {
        long hour = diff % nd / nh;//計算差多少小時
        if (hour > 0) {
          tv_Time.setText(String.valueOf(hour));
          tv_Unit.setText("小時");
        } else {
          long min = diff % nd % nh / nm;//計算差多少分鐘
          if (min > 0) {
            tv_Time.setText(String.valueOf(min));
            tv_Unit.setText("分鐘");
          } else {
            second = diff%nd%nh%nm/ns;//計算差多少秒//輸出結(jié)果
//            if(min > 0){
//              stringBuffer.append(sec+"秒");
//            }
            handler.removeMessages(0);
            handler.sendEmptyMessage(0);
 
            tv_Unit.setText("即將開始");
            tv_Time.setVisibility(GONE);
          }
        }
      }
    }
  }
 
  public void setTextViewSize(int size){
    if(null != tv_Time){
      tv_Time.setTextSize(size);
    }
    if(null != tv_Unit){
      tv_Unit.setTextSize(size);
    }
  }
 
  public void setTextViewSpace(String type){
    if("Big".equals(type)){
      LinearLayout.LayoutParams lp2 = (LayoutParams) tv_Time.getLayoutParams();
      lp2.setMargins(0, 0, DensityUtil.dip2px(tv_Time.getContext(), 12), 0);
      tv_Time.setLayoutParams(lp2);     
    tv_Time.setBackground(getResources().getDrawable(R.drawable.bg_video_count_down));
    }else if("Middle".equals(type)){
      tv_Time.setPadding(12, 0, 12, 0);
      LinearLayout.LayoutParams lp2 = (LayoutParams) tv_Time.getLayoutParams();
      lp2.setMargins(0, 0,12, 0);
      tv_Time.setLayoutParams(lp2);
    }else {
      tv_Time.setPadding(8, 0, 8, 0);
      LinearLayout.LayoutParams lp2 = (LayoutParams) tv_Time.getLayoutParams();
      lp2.setMargins(0, 0, 8, 0);
      tv_Time.setLayoutParams(lp2);
    }
  }
 
  public void setRefreshCallBack(RefreshCallBack refreshCallBack){
    this.refreshCallBack = refreshCallBack;
  }
 
  public interface RefreshCallBack {
    public void refreshCallBack(boolean flag);
    public void showCallBack(boolean flag);
  }
 
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。 

標(biāo)題名稱:Android自定義view倒計時60秒
網(wǎng)站URL:http://jinyejixie.com/article46/jjhihg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、微信小程序、虛擬主機(jī)服務(wù)器托管、用戶體驗(yàn)、全網(wǎng)營銷推廣

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設(shè)
永和县| 古田县| 广元市| 合江县| 伊吾县| 濉溪县| 浦江县| 胶南市| 松溪县| 平湖市| 濉溪县| 平山县| 杨浦区| 杨浦区| 依兰县| 永清县| 中超| 保靖县| 凤山县| 阳新县| 安达市| 同仁县| 樟树市| 承德县| 醴陵市| 库尔勒市| 荆门市| 景谷| 新巴尔虎左旗| 巴彦淖尔市| 禹州市| 沅陵县| 富宁县| 安新县| 溧水县| 胶州市| 伊春市| 闽侯县| 孝昌县| 乾安县| 德化县|