温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Android限时抢购倒计时实现代码

发布时间:2020-08-31 12:27:57 来源:脚本之家 阅读:153 作者:DW的dory 栏目:移动开发

限时抢购倒计时实现效果图

Android限时抢购倒计时实现代码

布局:

<LinearLayout
    android:id="@+id/ll_xsqg"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:paddingTop="8dp"
    android:paddingBottom="8dp"
    android:paddingLeft="16dp">

    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textStyle="bold"
      android:textSize="14sp"
      android:text="@string/xsqg"/>

    <TextView
      android:id="@+id/tv_hour"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="5dp"
      android:paddingTop="3dp"
      android:paddingBottom="3dp"
      android:paddingLeft="5dp"
      android:paddingRight="5dp"
      android:background="@drawable/time_corner"
      android:textColor="@android:color/white"
      android:textSize="12sp"
      android:text="02"/>
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="5dp"
      android:textStyle="bold"
      android:textColor="@android:color/black"
      android:text=":"/>
    <TextView
      android:id="@+id/tv_minute"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="5dp"
      android:paddingTop="3dp"
      android:paddingBottom="3dp"
      android:paddingLeft="5dp"
      android:paddingRight="5dp"
      android:background="@drawable/time_corner"
      android:textColor="@android:color/white"
      android:textSize="12sp"
      android:text="15"/>
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="5dp"
      android:textStyle="bold"
      android:textColor="@android:color/black"
      android:text=":"/>
    <TextView
      android:id="@+id/tv_second"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_marginLeft="5dp"
      android:paddingTop="3dp"
      android:paddingBottom="3dp"
      android:paddingLeft="5dp"
      android:paddingRight="5dp"
      android:background="@drawable/time_corner"
      android:textColor="@android:color/white"
      android:textSize="12sp"
      android:text="36"/>

  </LinearLayout>

代码实现

public class HomeActivity extends Activity {

  @Bind(R.id.tv_hour)
  TextView tvHour;
  @Bind(R.id.tv_minute)
  TextView tvMinute;
  @Bind(R.id.tv_second)
  TextView tvSecond;

  private long mHour = 02;
  private long mMin = 15;
  private long mSecond = 36;
  private boolean isRun = true;

  private Handler timeHandler = new Handler() {
    @Override
    public void handleMessage(Message msg) {
      super.handleMessage(msg);
      if (msg.what==1) {
        computeTime();
        if (mHour<10){
          tvHour.setText("0"+mHour+"");
        }else {
          tvHour.setText("0"+mHour+"");
        }
        if (mMin<10){
          tvMinute.setText("0"+mMin+"");
        }else {
          tvMinute.setText(mMin+"");
        }
        if (mSecond<10){
          tvSecond.setText("0"+mSecond+"");
        }else {
          tvSecond.setText(mSecond+"");
        }
      }
    }
  };

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.activity_home);
    ButterKnife.bind(this);
    startRun();
  }


  /**
   * 开启倒计时
   */
  private void startRun() {
    new Thread(new Runnable() {

      @Override
      public void run() {
        // TODO Auto-generated method stub
        while (isRun) {
          try {
            Thread.sleep(1000); // sleep 1000ms
            Message message = Message.obtain();
            message.what = 1;
            timeHandler.sendMessage(message);
          } catch (Exception e) {
            e.printStackTrace();
          }
        }
      }
    }).start();
  }

  /**
   * 倒计时计算
   */
  private void computeTime() {
    mSecond--;
    if (mSecond < 0) {
      mMin--;
      mSecond = 59;
      if (mMin < 0) {
        mMin = 59;
        mHour--;
      }
    }
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI