91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android自定義view倒計時60秒

發布時間:2020-09-25 03:46:11 來源:腳本之家 閱讀:219 作者:MatrixMind 欄目:移動開發

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

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);
  }
 
  /**
   * 結束計時
   */
  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;//一天的毫秒數
    long nh = 1000 * 60 * 60;//一小時的毫秒數
    long nm = 1000 * 60;//一分鐘的毫秒數
    long ns = 1000;//一秒鐘的毫秒數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;//計算差多少秒//輸出結果
//            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);
  }
 
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

香格里拉县| 湖北省| 三门峡市| 东乡| 宁城县| 澄城县| 林芝县| 剑河县| 安徽省| 同德县| 开鲁县| 华容县| 鲜城| 含山县| 吉木萨尔县| 玉溪市| 迁安市| 临邑县| 耒阳市| 邻水| 高陵县| 容城县| 墨江| 综艺| 西畴县| 咸丰县| 泰宁县| 七台河市| 石城县| 太谷县| 金塔县| 衡东县| 宁阳县| 静宁县| 九江市| 永清县| 广水市| 油尖旺区| 大余县| 平远县| 离岛区|