设置sectionIndexer的样式

时间:2011-03-13 09:08:36

标签: android listview fastscroll

有没有人找到一种方法来设置使用SectionIndexer时出现的小部件的样式?样式更改,例如更改文本颜色或背景颜色。

2 个答案:

答案 0 :(得分:3)

找到答案here

您必须创建主题并将其应用于活动

答案 1 :(得分:1)

我在这里找到了答案:

https://gist.github.com/DHuckaby/d6b1d9c8e7f9d70c39de

public class CustomListView extends ListView {

    public CustomListView(Context context, AttributeSet attrs) {
        super(new ContextThemeWrapper(context, R.style.CustomListView), attrs);
    }
}

styles.xml

<resources>
    <style name="CustomListView" parent="@style/GlobalTheme">
        <item name="android:textColorPrimary">?android:textColorPrimaryInverse</item>
    </style>
</resources>