导航抽屉在oreo中显示为粉红色

时间:2018-06-26 05:40:33

标签: android navigation-drawer android-8.0-oreo

这是我的 gradle 文件

在奥利奥,我没有得到正确的输出。

这是我在oreo中得到的输出。

我试图升级compileSdkVersion,但是比我得到一个错误,所有库必须使用相同的版本。 请告诉我如何解决这个问题。

enter image description here

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion '26.0.2'

    defaultConfig {
        applicationId "com.rayvatapps.inspiquo"
        minSdkVersion 21
        targetSdkVersion 22
        versionCode 12
        versionName "3.4"
    }
    buildTypes {
        release {
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

repositories {
    jcenter()
}

dependencies {
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:design:22.2.0'
    implementation 'com.android.support:appcompat-v7:22.2.0'
    implementation 'com.android.support:support-v4:22.2.0'
    //cardview
    implementation 'com.android.support:cardview-v7:22.2.0'
    //recyclerview
    implementation 'com.android.support:recyclerview-v7:22.2.0'
    //glide
    implementation 'com.github.bumptech.glide:glide:3.6.0'
    implementation 'de.hdodenhof:circleimageview:1.3.0'
    //voley
    implementation 'com.android.volley:volley:1.0.0'
    //gson
    implementation 'com.google.code.gson:gson:2.6.2'
    //sdp
    implementation 'com.intuit.sdp:sdp-android:1.0.5'
    //ripple effect
    implementation 'com.skyfishjy.ripplebackground:library:1.0.1'
    //jsoup
    compile 'org.jsoup:jsoup:1.11.1'
}

xml

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:fitsSystemWindows="true">

    <include layout="@layout/include_list_viewpager"/>


    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_height="match_parent"
        android:layout_width="wrap_content"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/nav_header"
        app:menu="@menu/drawer_view"/>

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

任何帮助将不胜感激。

3 个答案:

答案 0 :(得分:1)

能否请您检查values文件夹中的颜色。通常,菜单从那里开始取彩色。

如果无法弄清楚,请从此处发布代码,以便我们检查颜色中所发生的情况以及来源。

最诚挚的问候,

Dimitar Georgiev

答案 1 :(得分:1)

关于错误“所有库都必须使用同一版本的错误”,请确保所有compileSDK,支持库,构建工具都使用相同的版本集,例如:27.x.x

导航项的颜色也可以通过以下方式控制:app:itemTextColor。值得一提的是您的应用中使用的主题,因为它还可以控制颜色。有关Android O的效果,请参见。否则,对于Android,o可以覆盖itemTextColor。

答案 2 :(得分:0)

在您XML的NavigationView属性内,使用app:itemIconTint更改颜色图标,并使用app:itemTextColor更改文本颜色,

<android.support.design.widget.NavigationView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        android:id="@+id/nav_view"
        app:itemIconTint="@color/material_blue_grey_80"
        app:itemTextColor="@color/material_blue_grey_80"
        app:headerLayout="@layout/drawer_header" />