先上效果图:
现在很多软件都使用到了抽屉导航,它能实现侧滑,也可称为侧滑菜单。它能够使界面更加简洁,简单明了,接下来就用这个案例来敲代码吧!
抽屉导航的头部布局:
head.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="8dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="textView"/>
</LinearLayout