Android - 将色调背景颜色更改为导航抽屉?

时间:2017-07-23 19:56:31

标签: android navigation-drawer android-navigation-drawer

我正在使用导航抽屉,我需要将色调背景的颜色从黑色更改为绿色。 任何想法?

enter image description here

2 个答案:

答案 0 :(得分:0)

您需要更新最新的支持库。

最新版本 - 25.4.0

添加此存储库,

allprojects {
  repositories {
    maven {
        url "https://maven.google.com"
    }
  }
}

项目级别build.gradle

更新您的xml

<android.support.design.widget.NavigationView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@android:color/white"//Change background color
        android:fitsSystemWindows="false"
        app:headerLayout="@layout/drawer_header"//Set your header
        app:itemIconTint="@color/colorPrimary"//Change Text color
        app:menu="@menu/drawer" />// set your menu items.

答案 1 :(得分:0)

试试这个:

yourDrawerLayout.setScrimColor(Color.GREEN);