这是交易:在我的Styles.xml中,我有一个普通的风格,一个继承另一个,如下所示:
<resources>
<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" parent="@style/AppTheme">
<item name="colorPrimary">#0acf66</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
当我应用第二个主题(AppTheme.NoActionBar)时,它会继承颜色,但操作栏仍然存在。如果我将第二个样式的父级更改为Theme.AppCompat.NoActionBar它可以工作,但颜色完全不同。我该如何解决?
答案 0 :(得分:2)
所以这是styles / themse的继承问题。有两种方法可以从样式继承属性。
1.通过点表示法(隐含):
<style name="Theme.AppCompat.NoActionBar.Custom">
// the parent will be Theme.AppCompat.NoActionBar
</style>
2.通过父标记(显式)
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
//the parent is Theme.AppCompat.Light.DarkActionBar
</style>
要记住的一件事是,显式继承胜过隐式继承。
所以在你的情况下
<style name="AppTheme.NoActionBar" parent="@style/AppTheme">
// your parent is AppTheme, and new style is AppThem.NoActionBar,
but it doesn't inherit from an actual NoActionBar style.
</style>
为了拥有“NoActionBar”主题,确实你必须从具有该属性的样式继承。因此,您可以创建一个继承自AppTheme.NoActionBar
。
Theme.AppCompat.NoActionBar
为了更好地了解主题/样式,请查看有关样式和主题的精彩Google I/O 2016链接。