在当前主题中找不到样式“ navigationViewStyle”

时间:2018-08-11 09:17:49

标签: java android android-studio

我在下面的代码中添加了DrawerLayout,但在设计视图中却出现了以下渲染问题。我看不到自己的DrawerLayout

Failed to find style '**navigationViewStyle**' in current theme

这是我的代码

<?xml version="1.0" encoding="utf-8"?>
<!-- Use DrawerLayout as root container for activity -->
<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_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <!-- Layout to contain contents of main body of screen (drawer will slide over this) -->
    <FrameLayout
        android:id="@+id/content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <!-- Container for contents of drawer - use NavigationView to make configuration easier -->
    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true" />

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

我的gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    buildToolsVersion "28.0.0"
    defaultConfig {
        applicationId "com.example.mohammadkhalili.kelaket"
        minSdkVersion 15
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:28.+'
    compile 'com.android.support.constraint:constraint-layout:1.+'
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:recyclerview-v7:28.+'
    compile 'com.squareup.okhttp3:okhttp:3.11.0'
    compile 'com.google.code.gson:gson:2.3.1'
    compile 'junit:junit:4.12'
    compile 'com.github.bumptech.glide:glide:3.8.0'
    compile 'de.hdodenhof:circleimageview:1.1.0'
    compile 'com.android.support:design:28.+'
    compile 'com.android.support:support-v4:28.+'
    compile 'com.android.support:cardview-v7:26.0.0-alpha1'
}

清单文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.mohammadkhalili.kelaket" >

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.AppCompat.Light.NoActionBar"

        >
        <activity android:name=".Splash" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>



        <activity android:name=".loginpackage.RegisterActivity"/>
        <activity android:name=".loginpackage.ForgetPassActivity" />
        <activity android:name=".mainfilmpage.MainListFilmActivity" />
        <activity android:name=".mainfilmpage.MainFilmActivity" />
        <activity android:name=".loginpackage.login"/>


    </application>

</manifest>

3 个答案:

答案 0 :(得分:4)

此问题的唯一解决方案是使用版本compileSdkVersion 27。 在版本27中,您应该使用

dependencies {
        implementation 'com.android.support:appcompat-v7:27.1.1'
        implementation 'com.android.support:cardview-v7:27.1.1'
        implementation 'com.android.support:design:27.1.1'
}

build.gradel

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.your app name"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        lintOptions {
            checkReleaseBuilds false
            abortOnError false
        }
        aaptOptions{
            cruncherEnabled = false
        }
    }
    buildTypes {
        release {

        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

    }
}

此问题是版本28中的错误。

答案 1 :(得分:2)

将此行添加到您的主题

<item name="navigationViewStyle">@style/Widget.Design.NavigationView</item>

这将有助于在布局中呈现导航视图。

已编辑

尝试使用稳定的android库版本号。像下面这样

  

实现'com.android.support:appcompat-v7:28.0.0-rc01'

答案 2 :(得分:0)

  

无法在当前主题中找到样式'(2) this.state.totalDonations: 0 (2) now need to set state to: 4205 '

希望现在回答不晚,但这是-navigationViewStyle中的一个错误,到目前为止已经讨论了很多次。总是导致 Android Studio预览不显示布局等。

解决方案::最好的解决方案是使用诸如v28之类的稳定版本或更新至Android Studio的最新金丝雀版本。但是,由于您使用的是27.1.1,因此它可能选择了错误的版本,并且不建议使用依赖项,就像您在指定版本后添加+一样。

还有另一种解决方案,只需要在28.+内部使用这段代码:

Build.gradle

这实际上是绕过使用configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> def requested = details.requested if (requested.group == "com.android.support") { if (!requested.name.startsWith("multidex")) { details.useVersion "27.1.1" } } } } API的过程,无需更改当前的v27.1.1依赖关系。

此外,build.gradle的版本应与支持库的版本相同:

CardView

将其更改为compile 'com.android.support:cardview-v7:26.0.0-alpha1' 或任何支持库。