Android“您需要在设计库中使用Theme.AppCompat主题(或后代)" [英] Android "You need to use a Theme.AppCompat theme (or descendant) with the design library"

查看:110
本文介绍了Android“您需要在设计库中使用Theme.AppCompat主题(或后代)"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好的,我收到此错误(标题). 许多帖子建议我(甚至是Android Studio)将主题更改为App.Appcompat,我已经做到了.

Ok , im getting this error (title) . Many post suggested me (even Android studio) to change the theme , to App.Appcompat , i have done it .

清单文件:

 <uses-permission android:name="android.permission.INTERNET" />

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/Theme.AppCompat">
    <activity
        android:name=".activity.MainActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

    <activity
        android:name=".activity.ContactAcitivty"
        android:label="@string/activity_title_contact" />
    <activity
        android:name=".activity.CopyrightActivity"
        android:label="@string/activity_title_copyright" />
    <activity android:name=".activity.FormActivity">
            <intent-filter>
                <action android:name="info.androidhive.navigationdrawer.activity.FormActivity" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

</application>

Style.xml

Style.xml

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
    </style>
    <style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay"  parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

但仍然没有任何变化.

我不知道发生了什么事,因为我之前没有遇到过这个问题(我没有在清单文件之前添加App.compat)

I don't know what happened since i didn't had this problem before (i didn't add App.compat in the manifest file bfore)

等级:

compile 'com.android.support:appcompat-v7:24.0.0-beta1'
compile 'com.android.support:design:24.0.0-beta1'
compile 'com.android.support:support-v4:24.0.0-beta1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.android.support.constraint:constraint-layout:+'
testCompile 'junit:junit:4.12'

错误日志:

java.lang.IllegalArgumentException: You need to use a Theme.AppCompat theme     (or descendant) with the design library.    
at android.support.design.widget.ThemeUtils.checkAppCompatTheme(ThemeUtils.java:36)     
at android.support.design.widget.NavigationView.<init> (NavigationView.java:102)   
at android.support.design.widget.NavigationView.<init>(NavigationView.java:96)   
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)  
at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:727)         at android.view.LayoutInflater.rInflate_Original(LayoutInflater.java:858)           

at android.view.LayoutInflater_Delegate.rInflate(LayoutInflater_Delegate.java:70)  
at android.view.LayoutInflater.rInflate(LayoutInflater.java:834)      
at android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:821)
at android.view.LayoutInflater.inflate(LayoutInflater.java:518)  
at android.view.LayoutInflater.inflate(LayoutInflater.java:397)

感谢您的帮助

推荐答案

尝试以下更改:

在gradle中:

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:support-v4:25.2.0'
compile 'com.android.support:design:25.2.0'

还在清单中将appcompat主题添加到活动"抽屉中的活动"

Also in manifest add the appcompat theme to your Navaigation drawer `Activity

<activity android:name=".activity.FormActivity"
           android:theme="@style/Theme.AppCompat">
            <intent-filter>
                <action android:name="info.androidhive.navigationdrawer.activity.FormActivity" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

这篇关于Android“您需要在设计库中使用Theme.AppCompat主题(或后代)"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆