我正在尝试使用黑暗工具栏(操作栏)实现AppCompat的Light主题,但是当动态添加工具栏或使用<include />
时,文本无法以正确的颜色显示(黑色而不是白色) 。默认操作栏的样式正确,但是当我添加工具栏时,它不是。
这是我的代码:
toolbar.xml
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
app:theme="@style/AppTheme"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
app:navigationContentDescription="@string/abc_action_bar_up_description"
android:background="?attr/colorPrimary"
app:navigationIcon="?attr/homeAsUpIndicator"
app:title="@string/action_settings"
/>
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">#ff299725</item>
<item name="colorPrimaryDark">#ff1d691b</item>
<item name="colorAccent">#ff5fb10b</item>
</style>
</resources>
但是我在预览和实时环境中得到了这个:
我尝试过不同版本的AppCompat(v.22.1,v.22.2,v.21.0.3)都复制了这个问题,我尝试为textColor
添加额外的样式,所有发生的事情都是它的样式一切都白了。
任何帮助SO传说?
答案 0 :(得分:3)
在您的toolbar.xml中,删除var role = JSON.parse(JSON.stringify(roles[i]));
属性并改为使用:
app:theme
此外,根据您实现工具栏的方式,您可能希望更改基本主题(在styles.xml中)以使用android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
变体,如下所示:
NoActionBar
答案 1 :(得分:0)
styles.xml
<style name="Toolbar" parent="@style/ThemeOverlay.AppCompat.ActionBar">
<item name="android:textColorPrimary">@color/xxx</item>
<item name="android:background">@color/xxx</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
</style>
<style name="DrawerArrowStyle" parent="@style/Widget.AppCompat.DrawerArrowToggle">
<item name="color">@color/xxx</item>
<item name="gapBetweenBars">4dp</item>
</style>
my_toolbar.xml
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/Toolbar"
/>