android中側滑欄的實現
阿新 • • 發佈:2019-01-21
1:drawerlayout類作為父控制元件 出現在最頂層。
2:被包裹的二級佈局就可以是 側滑欄或者是頁面本身。
3:只要是在耳機佈局的gravaty——layout屬性宣告一個start屬性,即可實現策側滑效果。
下面貼程式碼:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/gray_background" android:fitsSystemWindows="false" android:orientation="vertical" tools:context="com.safe.peoplesafety.Function.home.HomeActivity"> <android.support.v4.view.ViewPagerandroid:id="@+id/home_vp" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" /> <RadioGroup android:id="@+id/home_rg" android:layout_width="match_parent" android:layout_height="50dp" android:background="#ffffff" android:orientation="horizontal"> <RadioButtonandroid:id="@+id/home_rg_1st_rb" style="@style/style_home_activity_bottom_rb" android:drawableTop="@drawable/home_tab_1st_icon" android:text="@string/home_page_1st" /> <RadioButton android:id="@+id/home_rg_2nd_rb" style="@style/style_home_activity_bottom_rb" android:drawableTop="@drawable/home_tab_2nd_icon" android:text="@string/home_page_2nd" /> <RadioButton android:id="@+id/home_rg_3rd_rb" style="@style/style_home_activity_bottom_rb" android:drawableTop="@drawable/home_tab_3rd_icon" android:text="@string/home_page_3rd" /> </RadioGroup> </LinearLayout> <include layout="@layout/fragment_home_left_item"/> </android.support.v4.widget.DrawerLayout>
倒數第二行就是側滑選單,點進去是這樣的
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="280dp" android:layout_gravity="start" android:background="@color/white" android:layout_height="match_parent">
可以看到的是layout_gravity屬性是start。這兒決定了這個選單是個側滑選單。