国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android仿京東首頁秒殺倒計時

2019-10-21 21:26:45
字體:
來源:轉載
供稿:網友

本文實例為大家分享了Android仿京東首頁秒殺倒計時的具體代碼,供大家參考,具體內容如下

xml配置

<LinearLayout  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>
<?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>

方法內容:

//得到控件 mMiaoshaShiTv = view.findViewById(R.id.tv_miaosha_shi); mMiaoshaTimeTv = view.findViewById(R.id.tv_miaosha_time); mMiaoshaMinterTv = view.findViewById(R.id.tv_miaosha_minter); mMiaoshaSecondTv = view.findViewById(R.id.tv_miaosha_second); /****************京東秒殺倒計時**********************/ //使用handler用于更新UI private Handler handler = new Handler() { @Override public void handleMessage(Message msg) {  super.handleMessage(msg);  countDown();  handler.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(); } } /***************京東秒殺倒計時****************/

開啟倒計時:

handler.sendEmptyMessage(0);

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


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 灌云县| 武安市| 辉县市| 华坪县| 石门县| 杨浦区| 徐汇区| 济阳县| 福泉市| 日土县| 本溪| 平顺县| 白沙| 佛坪县| 石屏县| 苍梧县| 宁德市| 济南市| 蓝山县| 和龙市| 德惠市| 日土县| 琼中| 潞城市| 乌拉特中旗| 平乐县| 重庆市| 佛坪县| 甘洛县| 措美县| 晋州市| 蒙自县| 山西省| 上林县| 德格县| 桃源县| 邹城市| 安福县| 秀山| 安塞县| 巨鹿县|