这是我的风格页面:
<resources>
<color name="for_custom">#ff4db0e8</color>
<style name="CustomTheme" parent="android:Theme.Light">
<item name="android:windowBackground">@color/for_custom</item>
<item name="android:actionBarTheme">@color/for_custom</item>
<item name="android:displayOptions">homeAsUp</item>
</style>
</resources>
这是我的表现:
<application android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:theme="@style/CustomTheme">
应用主题后,操作栏不显示。为什么? 我的错是什么?
答案 0 :(得分:1)
如果你在Lollypop +上,默认的主题是材质,它不显示ActionBar。这是因为Material Design spec将Toolbar视图作为保留按钮的新方法。如果您想要旧样式,请使用Theme.Holo.Light
而不是Theme.Light