Android : How to populate a ListView with alphabet indexer and fastscroll as in contacts app.?

荒凉一梦 提交于 2019-12-18 12:33:10

问题


I would like to implement a ListView with fastscroll and albhabet indexer as in the contacts application. I'm using a SimpleAdapter to populate the ListView. As seen from the image, by selecting a letter from the alphabet indexer at the right, the listView selection goes to the corresponding ListItem. How to accomplish this? Please help.


回答1:


As I can't see your posted image, but I think

Here is the way to implement Section Indexing in Android as iPhone has, You should also refer Sectionindexer & alphabetindexer for such custom implementation.

  1. https://github.com/emilsjolander/StickyListHeaders
  2. https://github.com/JimiSmith/PinnedHeaderListView
  3. http://hello-android.blogspot.com/2010/11/sideindex-for-android.html

Try this, Hope this what you need..




回答2:


I know that this is late, Still here is a my github repo with an android project with list section header and alphabet indexer. I also implemented filter in it. Hope it helps someone.




回答3:


I will let you know in brief.

Create a class extends RelativeLayout implements OnTouchListener

Define a strings of alphabets

Find the screen height of list view

Create dyanamic textviews count same as number of alphabets, height of textView ==> screenWidth / alphabets.

Override onTouch method .

Find the textview which is currently selected//Offset.

Create a handler for sending the event to mainList

Call Listview setSelectionFromTop method pass the position.

Its done...



来源:https://stackoverflow.com/questions/8414650/android-how-to-populate-a-listview-with-alphabet-indexer-and-fastscroll-as-in

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!