我想制作ActionBar android.support.v7.widget.Toolbar
白色的操作按钮的颜色。我不想使用自定义资源。
我知道当我使用 DarkTheme 时,按钮会自动变成白色,但我使用的是透明的ActionBar ,我不想通过添加新资源来增加开销我的申请。
我可以使用
轻松完成DrawerLayout中的箭头按钮 <style name="DrawerArrowStyle" parent="Widget.AppCompat.DrawerArrowToggle">
<item name="color">@android:color/white</item>
</style>
答案 0 :(得分:1)
您可以使用定义主题和样式的工具栏:
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
style="@style/HeaderBar"
app:theme="@style/ActionBarThemeOverlay"
app:popupTheme="@style/ActionBarPopupThemeOverlay"/>
您可以使用以下样式完全控制您的ui元素:
<style name="ActionBarThemeOverlay" parent="">
<item name="android:textColorPrimary">#fff</item>
<item name="colorControlNormal">#fff</item>
<item name="colorControlHighlight">#3fff</item>
</style>
<style name="HeaderBar">
<!-- Define the toolbar background -->
<item name="android:background">xxxx</item>
</style>