Android Material Design:无法在当前主题中找到样式'toolbarStyle'

时间:2014-11-17 23:53:43

标签: android android-theme material-design

我正在尝试使用自定义样式在Android 21中使用工具栏小部件,但我无法摆脱此错误: Failed to find style 'toolbarStyle' in current theme

这是我的布局xml文件:

 <android.support.v7.widget.Toolbar
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/patient_toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:theme="@style/AppTheme.Patient" />

以下是患者主题:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light">
    <!-- Customize your theme here. -->
</style>

<style name="AppTheme.Patient" parent="AppTheme">
    <item name="colorPrimary">@color/patient_primary</item>
    <item name="colorPrimaryDark">@color/patient_primary_dark</item>
    <item name="colorAccent">@color/patient_accent</item>
    <item name="toolbarStyle"></item> <!-- what values to put here -->
</style>

我还尝试在我的主题中添加toolbarStyle项,但我不知道可能的值。我错过了什么吗?

2 个答案:

答案 0 :(得分:33)

虽然我的xml是正确的,但我遇到了同样的问题。 解决方案是:在主题选择复选框中设置AppCompat主题,请参阅图片。 enter image description here

答案 1 :(得分:21)

您可以使用样式Widget.AppCompat.Toolbar。

<!-- Toolbar styles -->
    <item name="toolbarStyle">@style/Widget.AppCompat.Toolbar</item>