Yalantis搜索过滤器,带有自定义背景颜色的android

时间:2017-02-19 13:07:00

标签: android

我正在使用Yalantis过滤器来安装android。我正在尝试为下拉列表设置深色背景颜色。我试图通过这样做来实现它:

    <com.yalantis.filter.widget.Filter
        android:background="@color/colorPrimaryDark"
        android:id="@+id/filter"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

我尝试设置背景颜色,但不幸的是,过滤器仍为白色,这就是结果。enter image description here

正如您所看到的,在特色之下是颜色出现的地方。我希望过滤器本身具有此颜色,但过滤器仍然如下所示:

enter image description here

滤镜仍为白色。有没有办法改变滤镜颜色?谢谢。

1 个答案:

答案 0 :(得分:2)

请查看该库的1.0.3版本,它已经修复。现在,您可以使用expandedBackgroundcollapsedBackground属性

轻松更改背景
<com.yalantis.filter.widget.Filter
    app:expandedBackground="@color/colorPrimaryDark"
    app:collapsedBackground="@color/colorPrimaryDark"
    android:id="@+id/filter"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />