如何在Listview android中右侧垂直添加第一个字母的字母部分索引器

时间:2013-01-12 07:53:45

标签: android list android-layout

Alphabetical index

我正在创建一个应用程序,我必须在右侧垂直栏中显示带有字母部分和字母表第一个字母的listView,如屏幕截图所示。 所以请帮助我如何使用带右侧索引的字母部分索引器创建listView。

感谢

2 个答案:

答案 0 :(得分:0)

您可以在github上搜索开放的库。

您可以使用的其中一个库:Daniel Nam的IndexableListView

https://github.com/woozzu/IndexableListView

你可以通过查看源代码来获取想法;)

祝你好运

答案 1 :(得分:0)

将来可能会帮助别人。你可以做两件事来实现这个目标。首先创建一个可展开的列表视图,该视图将显示带有A到Z列表的部分的项目的实时,请将其作为示例http://javapapers.com/android/android-expandable-listview引用。

下一步是添加部分索引器。以下链接适用于listview http://www.survivingwithandroid.com/2012/12/android-listview-sectionindexer-fastscroll.html

这会将可扩展列表视图的滚动位置设置为一个用户触摸部分索引器。

private static String sections = "abcdefghilmnopqrstuvz";

this.setSelection(((SectionIndexer) getAdapter()) .getPositionForSection(currentPosition));//position of group view item 

现在getPositionForSection里面的回调方法返回标题的位置

@Override public int getPositionForSection(int sectionIndex) { 
    // Get the total number of groups
    for (int i = 0; i < this.getGroupCount(); i++) {
      //Get Group Item like,For 0 Group Item A,For 1 Group Item B etc
      String groupItem = (String) this.getGroup(i);
      int childCount = 0;
      //Start Matching for letter B on section indexer, get the count of child 
      //for letter A and same logic for other letters
      if (groupItem.charAt(0) == sections.charAt(sectionIndex)){
      int previousChildIndex = i - 1;
      //Run a for loop to get previous childs
      for (int j = previousChildIndex; j >= 0; j--) {
      //If for letter B, previous group Item i.e.A contains 3 childs 
      //the sum is maintained 
      childCount = childCount + this.getChildrenCount(j);
    }
    //for Group Item B, i=0 and childCount is 3 and so on
    return i + childCount;
   }
 }

}
 return 0;
}

休息在示例中解释的相同逻辑对你来说应该像魅力一样!!!