单击时隐藏导航项

时间:2017-03-10 11:44:04

标签: android

navigation item when selected

这是我的导航抽屉的屏幕截图,下面是我使用的依赖项

   compile 'com.jakewharton:butterknife:8.2.1'
    compile 'com.android.support:appcompat-v7:25.2.0'
    compile 'com.android.support:design:25.2.0'
    compile 'com.android.volley:volley:1.0.0'
    compile 'com.android.support:support-v4:25.2.0'
    compile 'com.android.support:recyclerview-v7:25.2.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.github.hotchemi:permissionsdispatcher:2.0.3'
    compile 'com.makeramen:roundedimageview:2.3.0'
    compile 'com.android.support:cardview-v7:25.2.0'

这些是我的依赖

2 个答案:

答案 0 :(得分:0)

更改导航抽屉的OnClick()中的颜色。

答案 1 :(得分:0)

这里是颜色问题我只是在应用主题中使用相同的颜色我只是改变颜色并添加(     应用程式:itemIconTint =" @颜色/ text_color_white"     应用程式:itemTextColor =" @颜色/ text_color_white&#34) 此代码导航视图的xml。

<android.support.v4.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:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        **app:itemIconTint="@color/text_color_white"
        app:itemTextColor="@color/text_color_white"**
        app:menu="@menu/activity_main_drawer" />

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