带有微调器的Android工具栏,带有白色文本和白色弹出背景?

时间:2016-07-25 22:09:44

标签: android spinner toolbar

我一直在尝试将微调器添加到我的工具栏中,但未能达到我想要的效果。

这是我到目前为止所做的。

enter image description here enter image description here

正如您在屏幕截图中看到的那样,Spinner选择的文本颜色为黑色(我希望它是白色),而弹出窗口的背景为白色,文本颜色为黑色(这没关系)。

这是我的代码。

       <android.support.v7.widget.Toolbar
        android:id="@+id/bottom_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        android:layout_alignParentBottom="true">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <ImageButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/ic_date_range_white_24dp" />

            <android.support.v7.widget.AppCompatSpinner
                android:id="@+id/date_range"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:entries="@array/date_range_options"
                android:spinnerMode="dropdown" />

        </LinearLayout>

    </android.support.v7.widget.Toolbar>

如果我更改工具栏并添加app:theme =“@ style / ThemeOverlay.AppCompat.Dark.ActionBar”,如下所示:

<android.support.v7.widget.Toolbar
        android:id="@+id/bottom_toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
        android:layout_alignParentBottom="true">

我得到了旋转器选定文本的白色文本颜色,但弹出背景也变暗,并带有白色文本颜色。

我希望在所选的文本颜色中使用带有黑色文本的白色弹出背景。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用主题执行此操作

<android.support.v7.widget.AppCompatSpinner
                android:id="@+id/date_range"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:entries="@array/date_range_options"
                android:theme="@style/spinnerStyle
                android:spinnerMode="dropdown" />

然后在你的样式文件中

<style name="spinnerStyle" parent="AppTheme">
    <item name="colorControlNormal">@color/white_text</item>
    <item name="colorControlActivated">@color/white_text</item>
    <item name="colorControlHighlight">@color/white_text</item>
</style>

将@ color / white_text替换为您要使用的任何颜色。