我有一个GridView
使用 anArrayAdapter
来填充其内容的布局。我想利用快速滚动,因此添加了以下归因于布局 XML 的内容:
android:fastScrollAlwaysVisible="true"
android:fastScrollStyle="@android:style/Widget.Material.FastScroll"
我现在可以使用快速滚动来导航,但现在想添加一个材质缩略图预览:
据我了解,我将不得不SectionIndexer
从我的接口实现ArrayAdapter
:
class exampleArrayAdapter extends ArrayAdapter<...> implements SectionIndexer
在这一点上,我遇到了一个障碍,无法弄清楚如何获得拇指预览,并且担心我可能做错了什么。关于如何让这个工作或我应该查找什么的指针将不胜感激。