天天看點

Android中DrawerLayout與NavigationView配合使用

Android中DrawerLayout與NavigationView配合使用

DrawerLayout簡單使用

這篇文章基于上訴連結中來的

一、首先寫好總的布局,如下

<?xml version="1.0" encoding="utf-8"?>
<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"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main_drawer"
    tools:context=".MainActivity">

        <LinearLayout
            android:id="@+id/center_content"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center"
            android:orientation="vertical"
            android:background="#00ffff">

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="主界面"
                android:textSize="20sp"
                android:textColor="#ff0000"/>

        </LinearLayout>

    <android.support.design.widget.NavigationView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/navigationview_header"
        app:menu="@menu/menu">
    </android.support.design.widget.NavigationView>

</android.support.v4.widget.DrawerLayout>
           

DrawerLayout就不重複了,重點是NavigationView,它有兩個重要的屬性,app:headerLayout和app:menu,分别是頭部和菜單部分,具體效果如下

Android中DrawerLayout與NavigationView配合使用

繼續閱讀