1. Handler使用引出
現(xiàn)在作為客戶,有這樣一個(gè)需求,當(dāng)打開Activity界面時(shí),開始倒計(jì)時(shí),倒計(jì)時(shí)結(jié)束后跳轉(zhuǎn)新的界面(思維活躍的朋友可能立馬想到如果打開后自動(dòng)倒計(jì)時(shí),就類似于各個(gè)APP的歡迎閃屏頁(yè)面),如下圖:
作為初學(xué)者,可能覺得直接開啟一個(gè)包含倒序循環(huán)的子線程就ok了,具體實(shí)現(xiàn)如下:
1.1 Layout界面代碼如下:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main2" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.mly.panhouye.handlerdemo.Main2Activity"> <TextView android:gravity="center" android:textSize="30sp" android:layout_width="match_parent" android:layout_height="match_parent" android:text="NO DATA" android:id="@+id/tv"/> </LinearLayout>