我有非字母顺序的国家/地区列表视图,并开始使用fastscroll。我想在使用fastscroll滚动时显示country-flag,但似乎API将FastScroll类作为私有,因此我无法覆盖它。
是否有其他人实施了自定义快速滚动视图?
答案 0 :(得分:11)
在ListView XML定义中,添加
android:fastScrollEnabled="true"
或代码
listView.setFastScrollEnabled(true);
在res / drawable文件夹中创建文件fastscroll_thumb.xml,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/fastscroll_pressed" />
<item android:drawable="@drawable/fastscroll" />
</selector>
在AndroidManifest.xml中,为您的应用程序设置自定义主题:
<application
android:theme="@style/ApplicationTheme"
...>
在res文件夹中创建一个values文件夹。在res / values中创建themes.xml文件,如下所示:
<resources>
<style name="ApplicationTheme">
<item name="android:fastScrollThumbDrawable">@drawable/fastscroll_thumb</item>
</style>
</resources>
最后确保你的drawable文件夹中存在fastscroll.png和fastscroll_pressed.png
(可选) 如果您愿意,还可以在调试时设置快速滚动始终可见
listView.setFastScrollAlwaysVisible(true);
或XML
android:fastScrollAlwaysVisible="true"
答案 1 :(得分:0)
请在此处查看我的答案,了解如何在不覆盖应用主题的情况下执行此操作的示例:https://stackoverflow.com/a/22210842/736496