我有一个ListView
使用AlphaIndexer
. SectionIndexer
我想知道是否有自定义快速滚动时显示的 Aplha-Indexer 框,即更改其颜色、背景、文本字体/颜色等。喜欢:
已编辑
或,当此框与FastScroll Thumb. like:
我有一个ListView
使用AlphaIndexer
. SectionIndexer
我想知道是否有自定义快速滚动时显示的 Aplha-Indexer 框,即更改其颜色、背景、文本字体/颜色等。喜欢:
已编辑
或,当此框与FastScroll Thumb. like:
如果您Theme
在应用程序中使用参考 res/val/style
和它的变体styles-v11
或styles-v14
。那么您肯定可以实现自定义fastscroll indexer
。
将这些属性附加到您的styles-v11
或styles-v14
您的父Theme
属性中。
<style name="Theme.Zname" parent="@style/Theme.Sherlock.Light">
<item name="android:fastScrollPreviewBackgroundLeft">@drawable/_ics_fastscroll_label_left</item>
<item name="android:fastScrollPreviewBackgroundRight">@drawable/_ics_fastscroll_label_right</item>
</style>
在这里,因为它正在使用ActionBarSherlock
,所以样式fastScrollPreviewBackgroundLeft
和fastScrollPreviewBackgroundRight
附加在它与 API >11
.
把这些放在里面drawable/_ics_fastscroll_label_left