Material Lollipop 下面的设计支持 - 崩溃

Material Design support below Lollipop - crashes

我一直在尝试实现 Material 设计主题,遵循 these instructions

我的styles.xml:

<style name="AppBaseTheme" parent="@style/Theme.AppCompat">
    <item name="actionBarStyle">@style/MyActionBar</item>
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->

</style>

<style name="MyActionBar" parent="@style/Widget.AppCompat.ActionBar.Solid">
     <item name="displayOptions">useLogo|showHome</item>
    <item name="logo">@drawable/home_page_logo</item>
    <item name="background">@color/actionbar_background_color</item>
    <item name="textColor">@color/white</item>
    <item name="titleTextStyle">@style/MyActionBarTextStyle</item>
</style>

无论我尝试了什么,应用程序在我在 onCreate() 上启动我的主 activity 时崩溃,并显示此崩溃日志:

Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
at android.support.v7.app.ActionBarActivityDelegate.onCreate(ActionBarActivityDelegate.java:151)
 at android.support.v7.app.ActionBarActivityDelegateBase.onCreate(ActionBarActivityDelegateBase.java:138)
 at android.support.v7.app.ActionBarActivity.onCreate(ActionBarActivity.java:123)

有人遇到过这个问题吗?关于可能导致此问题的任何建议?

编辑: 这绝对是我 styles.xml 主题中的内容。如果我强制应用程序使用默认的 Theme.AppCompat 主题,它就可以工作。 什么可能导致主题失败?我验证了 ActionBar 属性没有使用 "android:"。还要别的吗?

尝试从 styles.xml 的第一行删除“@style/”,这样您就可以:

<style name="AppBaseTheme" parent="Theme.AppCompat">

parent 应该是 Theme.AppCompat 而不是 @style/Theme.AppCompat.

使用 @style/ 您将使用 Android API 21 中的样式,并且它必须是 AppCompat 库中的样式。

编辑:

Widget.AppCompat

可能也是一样

edit2:

像这样

<style name="AppBaseTheme" parent="Theme.AppCompat">
    <item name="actionBarStyle">@style/MyActionBar</item>
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->

</style>

<style name="MyActionBar" parent="Widget.AppCompat.ActionBar.Solid">
     <item name="displayOptions">useLogo|showHome</item>
    <item name="logo">@drawable/home_page_logo</item>
    <item name="background">@color/actionbar_background_color</item>
    <item name="textColor">@color/white</item>
    <item name="titleTextStyle">@style/MyActionBarTextStyle</item>
</style>

已解决...

2 个我的 jar 库显然有 generated values.xml,其中包含 AppThemeAppBaseTheme 的样式。 我只验证了我们的依赖模块,因为 jar 库不应该声明应用程序主题,特别是不使用默认主题的名称。

在发布答案之前,我添加到我的 AndroidManifest.xml <application> tools:replace="android:theme" 并声明了新主题,假设它会工作并且我的应用程序将覆盖任何其他主题。

解决方案 最终,虽然很愚蠢,但将我自己的 AppThemeAppBaseTheme 重命名为不同的名称,现在它起作用了。 在这样一个微不足道的修复上花费了数小时。希望这会为其他人腾出一些时间。