如何更改Android工具栏项目悬停/按下颜色?

时间:2015-04-07 21:27:46

标签: android toolbar styling

由于某种原因,我在跟踪如何更改Android工具栏项目的新闻状态/悬停状态颜色方面遇到了很多麻烦。我想知道是否有人会展示如何做到这一点的例子。现在它只是默认为浅灰色。

这是我的工具栏代码:

<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="wrap_content"
android:background="?attr/colorPrimaryDark"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/overflowStyle"
 >

<Spinner
    android:id="@+id/spinner_nav"
    android:paddingLeft="5dp"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

到目前为止我的工具栏样式代码:

    <style name="overflowStyle" parent="Theme.AppCompat.Light">
    <item name="android:selectableItemBackground">
        @drawable/actionbar_background_states
    </item>
</style>

我有一个抽屉,一个下拉式微调器和一个连接到此工具栏的溢出菜单,每个项目我都希望有一个蓝色的按下颜色。

对此的任何帮助将不胜感激。

0 个答案:

没有答案