在appcompat版本22.1.0之前,我可以在styles.xml中爲我的應用程序工具欄定義全局樣式。不適用於樣式的工具欄主題(22.1.0)
<item name="toolbarStyle">@style/AppTheme.Widget.Toolbar</item>
我的全局工具欄風格聲明的工具欄主題屬性:
<style name="AppTheme.Widget.Toolbar" parent="Widget.AppCompat.Toolbar">
<item name="theme">@style/AppTheme.Widget.Toolbar.ThemeOverlay</item>
</style>
升級到22.1.0和改變主題屬性到新的Android 後:主題屬性時,主題不再適用。如果我在layout.xml中的工具欄上聲明瞭這個主題,它就可以工作。
如何爲全局風格的工具欄聲明全局主題?
@ chris-banes會愛上你的幫助! – athor