設置嚮導頁面,經過SharedPreferences來判斷是否已經設置過了,跳轉到不一樣的頁面android
自定義樣式ide
在res/values/styles.xml中佈局
添加節點<style name=」」>,設置名稱屬性ui
在<style>節點裏面,添加節點<item name=」」>設置名稱屬性,就是佈局的各類參數spa
在<item>的文本里面,設置佈局的各類參數值code
在佈局文件中引用樣式,style=」@style/xxxxxxxxxxxx」orm
在TextView的左側放置小圖標xml
使用左側圖標屬性android:drawableLeft=」@android:drawable/xxxxxxxxxxx」,引用android系統的圖標,例如:@android:drawable/star_big_onblog
圖標垂直居中對齊,使用對齊屬性 android:gravity=」center_vertical」圖片
引導頁下面的小圓點
線性佈局,橫向,ImageView,包裹內容,總體居中
使用系統圖標 @android:drawable/presence_online
@android:drawable/presence_invisible
自定義按鈕狀態背景
在res/drawable/button.xml文件中定義,添加節點<selector>
定義按鈕按下狀態 添加<item>節點,設置狀態屬性android:state_pressed=」true」
設置圖片屬性android:drawable=」xxxx」
設置按鈕焦點狀態 添加<item>節點,設置狀態屬性android:state_focus=」true」
定義按鈕默認圖片 添加<item>節點,設置圖片屬性android:drawable=」xxxx」
設置圖片屬性android:drawable=」xxxx」
佈局文件中,給按鈕設置背景,android:background=」@drawable/xxxxx」
activity_lost_find.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:layout_width="match_parent" android:layout_height="40dp" android:background="#2D89EF" android:gravity="center" android:text="1.手機防盜設置嚮導" android:textColor="#fff" android:textSize="18sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dp" android:layout_marginTop="8dp" android:text="手機防盜包含如下功能:" android:textSize="16sp" /> <TextView style="@style/guide_text_list" android:drawableLeft="@android:drawable/btn_star_big_on" android:text="SIM卡變動報警" /> <TextView style="@style/guide_text_list" android:drawableLeft="@android:drawable/btn_star_big_on" android:text="GPS追蹤" /> <TextView style="@style/guide_text_list" android:drawableLeft="@android:drawable/btn_star_big_on" android:text="遠程數據銷燬" /> <TextView style="@style/guide_text_list" android:drawableLeft="@android:drawable/btn_star_big_on" android:text="遠程鎖屏" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:orientation="horizontal" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/presence_online" /> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/presence_invisible" /> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/presence_invisible" /> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@android:drawable/presence_invisible" /> </LinearLayout> <RelativeLayout android:layout_width="match_parent" android:layout_height="match_parent" > <Button android:textColor="#444" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_marginBottom="10dp" android:layout_marginRight="10dp" android:background="@drawable/button_selector" android:text="下一步" /> </RelativeLayout> </LinearLayout>
button_selector.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@drawable/barcode_btn_guide_pressed" android:state_focused="true"></item> <item android:drawable="@drawable/barcode_btn_guide_pressed" android:state_pressed="true"></item> <item android:drawable="@drawable/barcode_btn_guide_normal"></item> </selector>