答案 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);