日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 运维知识 > Android >内容正文

Android

Android电商抢购倒计时,Android限时抢购倒计时实现代码

發(fā)布時(shí)間:2023/12/15 Android 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Android电商抢购倒计时,Android限时抢购倒计时实现代码 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

限時(shí)搶購(gòu)倒計(jì)時(shí)實(shí)現(xiàn)效果圖

布局:

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">

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textStyle="bold"

android:textSize="14sp"

android:text="@string/xsqg"/>

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"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginLeft="5dp"

android:textStyle="bold"

android:textColor="@android:color/black"

android:text=":"/>

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"/>

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginLeft="5dp"

android:textStyle="bold"

android:textColor="@android:color/black"

android:text=":"/>

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"/>

代碼實(shí)現(xiàn)

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();

}

/**

* 開(kāi)啟倒計(jì)時(shí)

*/

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();

}

/**

* 倒計(jì)時(shí)計(jì)算

*/

private void computeTime() {

mSecond--;

if (mSecond < 0) {

mMin--;

mSecond = 59;

if (mMin < 0) {

mMin = 59;

mHour--;

}

}

}

}

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持編程小技巧。

總結(jié)

如果覺(jué)得編程之家網(wǎng)站內(nèi)容還不錯(cuò),歡迎將編程之家網(wǎng)站推薦給程序員好友。

本圖文內(nèi)容來(lái)源于網(wǎng)友網(wǎng)絡(luò)收集整理提供,作為學(xué)習(xí)參考使用,版權(quán)屬于原作者。

小編個(gè)人微信號(hào) jb51ccc

喜歡與人分享編程技術(shù)與工作經(jīng)驗(yàn),歡迎加入編程之家官方交流群!

總結(jié)

以上是生活随笔為你收集整理的Android电商抢购倒计时,Android限时抢购倒计时实现代码的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。