带有自定义适配器的 AlphabetIndexer
有人可以向我展示如何将 AlphabetIndexer
与使用 getView
的自定义适配器一起使用的示例吗?我让它与标准适配器一起使用,但不知道如何使用自定义适配器来实现它。
谢谢
Can someone show me an example of how to use AlphabetIndexer
with a Custom Adapter that uses a getView
? I have it working with a standard adapter, but have no clue how to implement it with a custom adapter.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 LoaderManager 来管理适配器的光标,您将需要进行一些小的调整并覆盖适配器的 swapCursor 方法:
其他一切都与 @vsm 描述的一样。
If you're using a LoaderManager to manage your adapter's cursor, you'll want to make a small adjustment and override your adapters swapCursor method:
Everything else remains just as @vsm describes.
您好,这就是我使用 AlphaIndexer 的方式
NAME_COLUMN_INDEX 是数据库模式中列的索引。
...
如果这不是您需要的,请添加一些关于哪些应该是要扩展的类的代码等等。
无论如何,我希望这会有所帮助。
Hi this is how I use AlphaIndexer
NAME_COLUMN_INDEX is the index of the column in database schema.
...
If this is not what you need, please add some code about which should be the class to extend and so on.
Anyway I hope this helps.