引言: 目前侧滑菜单已广泛应用于各大应用,这一菜单形式简洁明了,深受用户的喜爱。在谷歌官方推出 DrawerLayout 之前,开发者大都通过 SlidingMenu 开源库来实现这一功能。而现在 DrawerLayout 被谷歌包含在了 android-support-v4.jar 这个包下,可以让开发者更简单方便的实现侧滑菜单这一功能。
Google I/O 2013Android更新了Support库,Support Library包中实现了侧滑菜单效果的控件---drawerLayout,支持创建 Navigation Drawer(导航抽屉)模式。
drawerLayout其实是一个布局控件,跟LinearLayout等控件是一种东西,但是drawerLayout带有滑动的功能。只要按照drawerLayout的规定布局方式写完布局,就能有侧滑的效果。
我们在新建项目的时候可以选择activitity的模式,其中有一项就是如图:
然后系统会自动为我们生成如图文件
但是这篇文章将不会用这种形式创建抽屉布局,而是一步步的添加代码带你理解抽屉布局:
首先进入主布局,我将它命名为drawer_layout,这个布局是我们在MainActivity 中引用的布局,也就是我们进去看到的布局
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">
<include
layout="@layout/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/nav_menu_main"
>
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
说明:drawerLayout分为侧边菜单和主内容区两部分,侧边菜单可以根据手势展开与隐藏(drawerLayout自身特性),在需要抽屉菜单的界面,用DrawerLayout 作为界面根控件。在DrawerLayout里面第一个View为当前界面主内容(也就是include布局里的内容,activity_main),第二个和第三个View为抽屉菜单内容。如果当前界面只需要一个抽屉菜单,则第三个View可以省略.次demo省略第三个,所以我们的第二个view即为NavigationView(侧滑抽屉)
如图:
这个有两个小点需要注意:
第一,因为使用了design这个库,所以要添加依赖,
第二:如果没有设置主题,默认会有actionbar的,你运行应该自己会看到效果,所以需要给activity设置theme为noactionbar:
我这些都是为了test随便测的,(还有很多其他的theme),接下来放出NavigationView里的两个布局文件,这两个布局是灵活的,完全可以自定义成自己喜欢的布局,
res/layout/nav_header_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="300dp"
android:layout_height="200dp"
android:id="@+id/nav_header_main"
android:background="?attr/colorPrimaryDark"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical|center_horizontal"
android:layout_marginLeft="100dp"
android:textColor="#ffffff"
android:textSize="30sp"
android:text="UI Demo"/>
</LinearLayout>
res/menu/nav_menu_main.xml
<?xml version="1.0" encoding="utf-8"?>
<!--suppress AndroidDomInspection -->
<menu
xmlns:android="http://schemas.android.com/apk/res/android">
<group android:checkableBehavior="single">
<item android:title="底部导航栏">
<menu>
<item
android:id="@+id/bottomNavigationBar"
android:icon="@drawable/ic_chevron_right_black_24dp"
android:title="BottomNavigationBar" />
<item
android:id="@+id/radioGroup"
android:icon="@drawable/ic_chevron_right_black_24dp"
android:title="RadioGroup+Fragment" />
<item
android:id="@+id/tabLayoutandViewPager"
android:icon="@drawable/ic_chevron_right_black_24dp"
android:title="TabLayout+ViewPager" />
</menu>
</item>
<item android:title="其他">
<menu>
<item
android:id="@+id/day_night"
android:icon="@drawable/ic_chevron_right_black_24dp"
android:title="主题"/>
<item
android:id="@+id/about"
android:icon="@drawable/ic_chevron_right_black_24dp"
android:title="关于" />
</menu>
</item>
</group>
</menu>
MainActivity
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.drawer_layout);
}
}
至此我们就自己按步骤写出了一个抽屉,是不是这个过程更加了解了抽屉的内在布局,结构了💗不用as提供给我们的我们也可以自己实现。
最后放出几个⚠️点:
- activity_main.xml中主内容区的布局代码要放在侧滑菜单布局的前面,这可以帮助DrawerLayout判断谁是侧滑菜单,谁是主内容区, XML 布局文件中的View顺序为Android系统中的 z-ordering顺序,而抽屉必须出现在内容之上。;侧滑菜单的部分的布局可以设置layout_gravity属性,如果为"start" 即为从左往右调用菜单,如果为"end" 即为从右往左调用菜单。
- 抽屉菜单的宽度为 dp 单位而高度和父View一样。抽屉菜单的宽度应该不超过320dp,这样用户可以在菜单打开的时候看到部分内容界面