Material design library系列——NavigationView

前言

又到了周五,提前祝大家周末愉快。虽然心情很激动,但是文章还是要写的,今天给大家带来Material design系列的第六篇文章,NavigationView的使用。

正如其名,NavigationView,导航View。一般我们用它和DrawerLayout实现抽屉式导航设计,很多App也用到了这个控件,国内的比如知乎,国外的例如Google自己的那些app,也基本全都采用了NavigationView。

那么这里我先给大家看一下效果,然后我们再来慢慢说如何实现这样的效果。

使用

  1. 首先还是要依赖design,这个我就不贴代码了,前面文章已经说过

  2. 在xml中添加DrawerLayout和NavigationView

<android.support.v4.widget.DrawerLayout
    android:id="@+id/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"
    tools:openDrawer="start">

    <!--这里是内容视图-->
    <include layout="@layout/content_view_main"/>

    <!--这里是侧拉视图-->
    <android.support.design.widget.NavigationView
        android:id="@+id/nav"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start">
    </android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>

内容视图的xml文件

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="vertical">

    <TextView
        android:id="@+id/tv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="@string/app_name"
        android:textSize="30sp"/>
</LinearLayout>

做到这一步,我们运行看一下效果(PS:这里由于我个人比较喜欢黑色,所以把colorPrimary和colorPrimaryDark都改成了黑色)


大家可以看到,我已经可以从左边把NavigationView拉出来了,但是里面是空白的,那么接下来我们就往里面添加数据。

添加headerLayout和menu

我们在xml下的NavigationView中添加两行属性,app:headerLayout和app:menu,就像这样

头部布局的代码

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="160dp"
              android:background="@drawable/head"
              android:orientation="vertical"
              android:padding="20dp">

    <ImageView
        android:id="@+id/iv_head"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dp"
        android:src="@mipmap/ic_launcher_round"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:text="LiXiaoTong"
        android:textColor="#FFF"
        android:textSize="20sp"/>

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="2dp"
        android:text="这是一个NavigationView"
        android:textColor="#FFF"/>
</LinearLayout>

menu文件的代码

<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <!--只允许一个条目被选中 -->
    <group
        android:checkableBehavior="single">

        <item
            android:id="@+id/chat"
            android:icon="@drawable/chat"
            android:title="chat"/>

        <item
            android:id="@+id/contact"
            android:icon="@drawable/contact"
            android:title="contact"/>

        <item
            android:id="@+id/debt"
            android:icon="@drawable/contact_debt"
            android:title="debt"/>

        <item
            android:id="@+id/remark"
            android:icon="@drawable/contact_remark"
            android:title="remark"/>
    </group>

    <item android:title="Other">
        <menu>
            <item
                android:id="@+id/phone"
                android:icon="@drawable/phone"
                android:title="phone">
            </item>
            <item
                android:id="@+id/refresh"
                android:icon="@drawable/refresh_list"
                android:title="refresh">
            </item>
        </menu>
    </item>
</menu>

设置完之后我们再看看效果


效果很明显,但是有一个小问题,我们左边的图片全部都是一个颜色了,那么我们来解决这个问题。

解决图标颜色统一

在代码中调用navigationView.setItemIconTintList(null); 就可以解决这个问题。

添加图标告诉用户打开NavigationView

如果我们不加点提示的话,用户可能根本不知道我们有侧拉菜单这个东西,所以这里我们加一个小图标以提示用户。

1. 用toolbar代替actionbar
在头部布局中添加
<!-- android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
这两行代码的作用是把ToolBar的文字和图标变成白色,不需要可以不加-->
   <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:background="@color/colorPrimary"
        android:layout_height="?attr/actionBarSize"
        android:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    </android.support.v7.widget.Toolbar>
把app的主题改为Theme.AppCompat.Light.NoActionBar
在代码中用toolbar代替actionbar
2. 找到DrawerLayout并添加滑动监听
 mDrawerLayout = (DrawerLayout) findViewById(R.id.drawerlayout);
        ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
                this, mDrawerLayout, toolbar, R.string.open, R.string.close);
        mDrawerLayout.addDrawerListener(toggle);
        //实现toolbar和Drawer的联动
        toggle.syncState();

做到了这里我们再看一下效果


可以看到左边有一个三条杠的图标,并且NavigationView覆盖面积更大了,但是这里NavigationView上面有一个黑色区域,体验不太好,所以我们做一下沉浸式处理。

沉浸式处理

这里用到了github上面一个不错的开源项目,添加依赖
compile 'com.jaeger.statusbarutil:library:1.4.0'

依赖之后,在DrawerLayout和NavigationView中添加
android:fitsSystemWindows="true"属性。

在代码中调用StatusBarUtil.setColorForDrawerLayout(this, mDrawerLayout, ContextCompat.getColor(this, R.color.colorPrimary));即可实现沉浸式。

给条目设置点击事件

在代码中调用setNavigationItemSelectedListener方法
然后重写onNavigationItemSelected方法

 @Override
    public boolean onNavigationItemSelected(@NonNull MenuItem item) {
        int id = item.getItemId();

        switch (id) {
            case R.id.chat:
                mTv.setText("chat");
                Snackbar.make(mTv, "chat", Snackbar.LENGTH_SHORT).show();
                break;
        }
        //关闭侧拉菜单
        mDrawerLayout.closeDrawer(GravityCompat.START);
        return true;
    }

获取头部的控件

调用navigationView.getHeaderView(0);即可拿到头部布局

重写返回键关闭NavigationView

  @Override
    public void onBackPressed() {
        //重写返回键,如果侧拉菜单已打开则关闭侧拉菜单
        if (mDrawerLayout.isDrawerOpen(GravityCompat.START)) {
            mDrawerLayout.closeDrawer(GravityCompat.START);
        } else {
            super.onBackPressed();
        }
    }

总结

大功告成,到这里我们的NavigationView就全部结束了,如果大家在使用过程中碰到什么问题或者我文章中有什么没有提到的欢迎大家留言,我会及时补充和解答,文章最后再次祝大家周(天)末(天)愉(吃)快(鸡)~

以上纯属于个人平时工作和学习的一些总结分享,如果有什么错误欢迎随时指出,大家可以讨论一起进步。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,607评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,047评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,496评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,405评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,400评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,479评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,883评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,535评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,743评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,544评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,612评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,309评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,881评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,891评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,136评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,783评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,316评论 2 342

推荐阅读更多精彩内容