用Android實現京東秒殺功能詳解

首先看效果圖:

在這裡插入圖片描述

京東秒殺是兩個小時一個場次,我們獲取到場次後,通過場次+兩個小時後,獲取到最終的時間,拿最終時間的時間戳,與當前時間時間戳相減,求得剩餘的小時,分鐘,秒數,即可實現倒計時功能!

具體代碼實現如下:

1.佈局頁面activity_seckill.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".SeckillActivity">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:gravity="center"
        android:text="仿京東秒殺"
        android:textColor="@color/black"
        android:textSize="20sp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:gravity="center"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/tv_screening"
            android:layout_width="100dp"
            android:layout_height="match_parent"
            android:gravity="center"
            android:text="幾點場:"
            android:textColor="@color/black"
            android:textSize="15sp" />

        <TextView
            android:id="@+id/tv_hours"
            android:layout_width="50dp"
            android:layout_height="40dp"
            android:background="@drawable/time_back"
            android:gravity="center"
            android:text="00"
            android:textColor="@color/white"
            android:textSize="15sp" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=":"
            android:textColor="#fd5343"
            android:textSize="15sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/tv_minutes"
            android:layout_width="50dp"
            android:layout_height="40dp"
            android:background="@drawable/time_back"
            android:gravity="center"
            android:text="00"
            android:textColor="@color/white"
            android:textSize="15sp" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=":"
            android:textColor="#fd5343"
            android:textSize="15sp"
            android:textStyle="bold" />

        <TextView
            android:id="@+id/tv_second"
            android:layout_width="50dp"
            android:layout_height="40dp"
            android:background="@drawable/time_back"
            android:gravity="center"
            android:text="00"
            android:textColor="@color/white"
            android:textSize="15sp" />
    </LinearLayout>
</LinearLayout>

2.文本的背景文件為time_back.xml

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

3.SeckillActivity類,具體註釋已經在代碼中給出

public class SeckillActivity extends AppCompatActivity {
    //秒殺場次
    private TextView tv_screening;
    //2個小時一個秒殺場次,距離秒殺結束剩餘多少小時
    private TextView tv_hours;
    //剩餘分鐘數
    private TextView tv_minutes;
    //剩餘秒數
    private TextView tv_second;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_seckill);
        tv_screening = findViewById(R.id.tv_screening);
        tv_hours = findViewById(R.id.tv_hours);
        tv_minutes = findViewById(R.id.tv_minutes);
        tv_second = findViewById(R.id.tv_second);

        //計算秒殺場次,兩個小時一個場次
        handler.sendEmptyMessage(0x00);
    }

    Handler handler = new Handler(new Handler.Callback() {
        @Override
        public boolean handleMessage(@NonNull Message msg) {
            if (msg.what == 0x00) {
                //設置時間
                mkTime();
            }

            handler.sendEmptyMessageDelayed(0x00, 1000);
            return true;
        }
    });

    private void mkTime() {
        try {
            //使用給定的模式解析日期
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

            StringBuilder stringBuilder = new StringBuilder();
            String format = sdf.format(new Date());
            //獲取當前的年月日
            String substring = format.substring(0, 11);
            stringBuilder.append(substring);

            //獲取日歷對象
            Calendar calendar = Calendar.getInstance();
            //獲取一天中當前的小時數 24小時制的
            int hours = calendar.get(Calendar.HOUR_OF_DAY);
            //獲取秒殺場次
            if (hours % 2 == 0) {
                tv_screening.setText(hours + "點場");
                stringBuilder.append(hours + 2);
            } else {
                tv_screening.setText((hours - 1) + "點場");
                stringBuilder.append(hours + 1);
            }
            stringBuilder.append(":00:00");
            Date sessionDate = sdf.parse(stringBuilder.toString());
            //獲取秒殺場次+兩個小時 的時間戳
            long sessionDateTime = sessionDate.getTime();

            //獲取當前時間的時間戳
            Date date = new Date();
            long millisecond = date.getTime();

            //間隔時間戳
            long timestampMillisecond = sessionDateTime - millisecond;

            //剩餘小時數
            long hour = timestampMillisecond / (1000 * 60 * 60);
            //剩餘分鐘數
            long minute = (timestampMillisecond - hour * (1000 * 60 * 60)) / (1000 * 60);
            //第①種方法: 獲得剩餘秒數
//            long second = (timestampMillisecond - hour * (1000 * 60 * 60) - minute * (1000 * 60)) / 1000;

            //第②種方法: 獲得剩餘秒數
            //取餘數 得到的也是毫秒數
            long test = timestampMillisecond % (60 * 1000);
            //剩餘的秒數 Math.round按照四舍五入返回最接近參數的int型整數
            long second = Math.round((float) (test / 1000));

            tv_hours.setText("0" + hour);

            if (minute >= 10) {
                tv_minutes.setText(minute + "");
            } else {
                tv_minutes.setText("0" + minute);
            }

            if (second >= 10) {
                tv_second.setText(second + "");
            } else {
                tv_second.setText("0" + second);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

以上就是京東秒殺的具體實現

總結

到此這篇關於用Android實現京東秒殺功能詳解的文章就介紹到這瞭,更多相關Android京東秒殺功能內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: