高级UI

DrawerLayout+NavigationView

2019-12-16  本文已影响0人  爺珍爱那颗心

侧滑菜单的实现方式有许多种,之前有写过一篇SlidingMenu的使用,这次决定记录下DrawerLayout+NavigationView来实现的过程

代码其实很简单,不过还是放一下吧,第一次用的话,可以做参考。

<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.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:id="@+id/drawer_layout"
    tools:context=".MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="320dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/colorAccent">
     <com.google.android.material.navigation.NavigationView
         android:id="@+id/design_navigation_view"
         android:layout_width="320dp"
         android:layout_height="match_parent"
         app:headerLayout="@layout/layout_header"
         app:menu="@menu/menu_left"
         android:layout_gravity="start"/>
    </LinearLayout>

</androidx.drawerlayout.widget.DrawerLayout>

headerLayout布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@mipmap/bg_header" />

</LinearLayout>

menu布局

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">

    <item
        android:id="@+id/menu_app_update"
        android:title="应用管理"
        android:icon="@mipmap/ic_launcher"/>
    <item
        android:id="@+id/menu_message"
        android:title="消息中心"
        android:icon="@mipmap/ic_launcher"/>
    <item
        android:id="@+id/menu_setting"
        android:title="设置"
        android:icon="@mipmap/ic_launcher"/>

</menu>

代码

public class MainActivity extends AppCompatActivity {

    @BindView(R.id.drawer_layout)
    DrawerLayout mDrawerLayout;
    @BindView(R.id.design_navigation_view)
    NavigationView designNavigationView;
    private View headView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ButterKnife.bind(this);
//        mDrawerLayout.addDrawerListener();
        headView = designNavigationView.getHeaderView(0);
        headView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

            }
        });
        designNavigationView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() {
            @Override
            public boolean onNavigationItemSelected(@NonNull MenuItem menuItem) {
                switch (menuItem.getItemId()){
                    case R.id.menu_app_update:

                        break;
                }
                return false;
            }
        });
    }
}

打完收工。

上一篇下一篇

猜你喜欢

热点阅读