本篇主要讲用Drawerlayout和NavigationView做的仿b站侧滑栏。
先上效果图:
素材真的难找,有些小瑕疵。。。
1.DrawerLayout
运用Drawerlayout要根据一定的规则写:
引用Drawerlayout在根布局文件,先写主内容区,再写侧滑栏。
例:
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--先写主页内容 -->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!--再写侧滑栏 -->
<ListView
<