1. Handler使用引出
現(xiàn)在作為客戶,有這樣一個需求,當打開Activity界面時,開始倒計時,倒計時結(jié)束后跳轉(zhuǎn)新的界面(思維活躍的朋友可能立馬想到如果打開后自動倒計時,就類似于各個APP的歡迎閃屏頁面),如下圖:
作為初學者,可能覺得直接開啟一個包含倒序循環(huán)的子線程就ok了,具體實現(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>