中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

Android如何實現仿京東秒殺倒計時

發布時間:2021-06-28 13:52:24 來源:億速云 閱讀:234 作者:小新 欄目:移動開發

這篇文章主要為大家展示了“Android如何實現仿京東秒殺倒計時”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Android如何實現仿京東秒殺倒計時”這篇文章吧。

效果圖如下所示:

Android如何實現仿京東秒殺倒計時 

由于我仿的京東是分模塊的,所以,這次主要描述秒殺模塊!

首先設置好時間的背景

drawable文件下創建shape_miaosha_time.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
 android:shape="rectangle">
 <solid android:color="#000"></solid>
 <corners android:radius="2.5dp"></corners>
</shape>

然后主要布局,你可以單獨書寫,然后引用出去

**count_down.xml**
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:background="#FFFFFF"
 android:orientation="vertical">
 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="40dp"
  android:gravity="center_vertical">
  <TextView
   android:id="@+id/tv_miaosha"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_marginLeft="8dp"
   android:text="京東秒殺"
   android:textColor="#f00"
   android:textSize="20sp" />
  <TextView
   android:id="@+id/tv_miaosha_time"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:padding="5dp"
   android:text="12點場"
   android:textSize="20sp" />
  <LinearLayout
   android:layout_width="wrap_content"
   android:layout_height="wrap_content">
   <TextView
    android:id="@+id/tv_miaosha_shi"
    android:layout_width="25dp"
    android:layout_height="25dp"
    android:background="@drawable/shape_miaosha_time"
    android:gravity="center"
    android:text="1"
    android:textColor="#fff"
    android:textSize="15sp" />
   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="3dp"
    android:text=":" />
   <TextView
    android:id="@+id/tv_miaosha_minter"
    android:layout_width="25dp"
    android:layout_height="25dp"
    android:background="@drawable/shape_miaosha_time"
    android:gravity="center"
    android:text="1"
    android:textColor="#fff"
    android:textSize="15sp" />
   <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="3dp"
    android:text=":" />
   <TextView
    android:id="@+id/tv_miaosha_second"
    android:layout_width="25dp"
    android:layout_height="25dp"
    android:background="@drawable/shape_miaosha_time"
    android:gravity="center"
    android:text="1"
    android:textColor="#fff"
    android:textSize="15sp" />
  </LinearLayout>
 </LinearLayout>
</LinearLayout>

Android如何實現仿京東秒殺倒計時 

這里寫邏輯代碼

//使用handler用于更新UI
private Handler handler = new Handler() {
  @Override
  public void handleMessage(Message msg) {
   super.handleMessage(msg);
   countDown();
   sendEmptyMessageDelayed(0, 1000);
  }
 };
 /**
  * 秒殺
  */
 private void countDown() {
  SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  Date curDate = new Date(System.currentTimeMillis());
  String format = df.format(curDate);
  StringBuffer buffer = new StringBuffer();
  String substring = format.substring(0, 11);
  buffer.append(substring);
  Log.d("ccc", substring);
  Calendar calendar = Calendar.getInstance();
  int hour = calendar.get(Calendar.HOUR_OF_DAY);
  if (hour % 2 == 0) {
   mMiaoshaTimeTv.setText(hour + "點場");
   buffer.append((hour + 2));
   buffer.append(":00:00");
  } else {
   mMiaoshaTimeTv.setText((hour - 1) + "點場");
   buffer.append((hour + 1));
   buffer.append(":00:00");
  }
  String totime = buffer.toString();
  try {
   java.util.Date date = df.parse(totime);
   java.util.Date date1 = df.parse(format);
   long defferenttime = date.getTime() - date1.getTime();
   long days = defferenttime / (1000 * 60 * 60 * 24);
   long hours = (defferenttime - days * (1000 * 60 * 60 * 24)) / (1000 * 60 * 60);
   long minute = (defferenttime - days * (1000 * 60 * 60 * 24) - hours * (1000 * 60 * 60)) / (1000 * 60);
   long seconds = defferenttime % 60000;
   long second = Math.round((float) seconds / 1000);
   mMiaoshaShiTv.setText("0" + hours + "");
   if (minute >= 10) {
    mMiaoshaMinterTv.setText(minute + "");
   } else {
    mMiaoshaMinterTv.setText("0" + minute + "");
   }
   if (second >= 10) {
    mMiaoshaSecondTv.setText(second + "");
   } else {
    mMiaoshaSecondTv.setText("0" + second + "");
   }
  } catch (ParseException e) {
   e.printStackTrace();
  }
 }

注意,這里才是開啟的代碼

private void startCountDown() {
  handler.sendEmptyMessage(0);
 }

以上是“Android如何實現仿京東秒殺倒計時”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

景德镇市| 青河县| 上思县| 文安县| 广水市| 平舆县| 延津县| 天台县| 玛多县| 灵璧县| 元阳县| 阳谷县| 抚州市| 西畴县| 红桥区| 鸡西市| 宁明县| 岳普湖县| 进贤县| 林周县| 朔州市| 嵊州市| 新乡市| 彭州市| 宜宾县| 弥渡县| 仁寿县| 汶川县| 瑞安市| 出国| 延长县| 资源县| 平潭县| 洛隆县| 涟源市| 石楼县| 曲松县| 麻阳| 龙海市| 若尔盖县| 涿州市|