样式Android工具栏操作按钮

时间:2016-05-12 15:30:45

标签: android toolbar

我在我的活动中使用Android Suppport库工具栏,由于某些原因,我似乎无法调整操作按钮的颜色,如下面屏幕截图右侧所示:

Example

无论我做什么,这些都顽固地保持黑色。工具栏在layout.xml中定义如下:

<android.support.v7.widget.Toolbar
    android:id="@+id/trip_detail_toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:elevation="4dp"
    app:theme="@style/AppTheme.TopToolbarTheme"
    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
    tools:ignore="UnusedAttribute" />

TopToolbarTheme定义如下:

<style name="AppTheme.TopToolbarTheme" parent="Theme.AppCompat.Light">
    <item name="colorPrimary">@color/colorNavigationBackground</item>
    <item name="colorPrimaryDark">@color/colorNavigationBackground</item>
    <item name="android:colorAccent" tools:targetApi="lollipop">@color/colorPrimary</item>
    <item name="android:textColorPrimary">@color/colorPrimary</item>
    <item name="android:textColorSecondary">@color/colorPrimary</item>
    <item name="colorControlNormal">@color/colorPrimary</item>
    <item name="colorControlHighlight">@color/colorPrimary</item>
    <item name="android:actionMenuTextColor">@color/colorPrimary</item>
</style>

我似乎找不到任何组合这些动作按钮的选项组合。这在Android中甚至可能吗?

0 个答案:

没有答案