滑动菜单

    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:id="@+id/draw_layout"

    tools:context="com.example.dell.bigwangday_07.activity.FirstActivity">

        android:layout_width="match_parent"

        android:layout_height="match_parent">

            android:id="@+id/toobar"

            android:layout_width="match_parent"

            android:layout_height="?attr/actionBarSize"

            android:background="?attr/colorPrimary"

            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"

            app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

        android:id="@+id/navigation"

        android:layout_width="match_parent"

        android:layout_height="match_parent"

        android:layout_gravity="start"

        app:menu="@menu/mymenu"

        app:headerLayout="@layout/nav_header">

    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"

    android:layout_height="180dp"

    android:padding="10dp"

    android:background="?attr/colorPrimary">

    android:src="@mipmap/ic_launcher"

    android:layout_centerInParent="true"

    android:layout_width="wrap_content"

    android:layout_height="match_parent" />

        android:text="温文尔雅"

        android:layout_alignParentBottom="true"

        android:layout_marginLeft="150dp"

        android:textColor="#fff"

        android:layout_width="match_parent"

        android:layout_height="wrap_content" />

        android:id="@+id/shoucang"

        android:title="收藏"/>

        android:id="@+id/wode"

        android:title="我的"/>

        android:id="@+id/shezhi"

        android:title="设置"/>


private void initData() {

navigation.setCheckedItem(R.id.shoucang);

navigation.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() {

@Override

        public boolean onNavigationItemSelected(@NonNull MenuItem item) {

switch (item.getItemId()) {

case R.id.shezhi:

startActivity(new Intent(FirstActivity.this,OtherActivity.class));

break;

}

return false;

}

});

}

你可能感兴趣的:(滑动菜单)