Reputation: 432
Has anyone found a way to style the widget that appears when SectionIndexer is used? Styling changes such as changing the text color or the background color.
Upvotes: 3
Views: 2481
Reputation: 432
Found the answer here
You have to create a theme and apply it to an activity
Upvotes: 2
Reputation: 115952
i've found an answer here:
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>
Upvotes: 1