欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 为ListView添加分段标头的方法

程序员文章站 2023-01-21 10:05:04
效果图: 我记得github上有一个类似的效果github类似效果 说一下实现这个效果的思路:在列表项中嵌入分段标头,然后根据需要显示或者隐藏分段标头,创建一个特...

效果图:

Android 为ListView添加分段标头的方法

我记得github上有一个类似的效果github类似效果

说一下实现这个效果的思路:在列表项中嵌入分段标头,然后根据需要显示或者隐藏分段标头,创建一个特殊的textview,让其叠加在列表的顶部,当列表滚动到一个新的分段时,就更新其内容

创建列表布局

创建一个xml,随列表滚动的分段标头和列表顶部的固定分段标头复用这个布局文件

header.xml

<?xml version="1.0" encoding="utf-8"?>

<textview xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/header"
  style="@android:style/textappearance.small"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:background="#0000ff" />

主布局list.xml

<?xml version="1.0" encoding="utf-8"?>

<framelayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" >

  <listview
    android:id="@android:id/list"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" />

  <include layout="@layout/header" />

</framelayout>

创建列表项布局文件list_item.xml,包含数据项和分段标头

<?xml version="1.0" encoding="utf-8"?>

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical" >

  <include layout="@layout/header" />

  <textview
    android:id="@+id/label"
    style="@android:style/textappearance.large"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

</linearlayout>

sectionadapter.java

public class sectionadapter extends arrayadapter<string> {

 private activity activity;

 public sectionadapter(activity activity, string[] objects) {
  super(activity, r.layout.list_item, r.id.label, objects);//为自定义视图指定xml布局文件
  this.activity = activity;
 }

 @override
 public view getview(int position, view view, viewgroup parent) {
  if (view == null) {
   view = activity.getlayoutinflater().inflate(r.layout.list_item,
     parent, false);
  }
  textview header = (textview) view.findviewbyid(r.id.header);
  string label = getitem(position);
  if (position == 0//检查列表项起始字母是否发生了改变,如果发生改变,该列表项就是分段中的第一项,修改分段标头的内容并显示该分段标头,否则隐藏
    || getitem(position - 1).charat(0) != label.charat(0)) {
   header.setvisibility(view.visible);
   header.settext(label.substring(0, 1));
  } else {
   header.setvisibility(view.gone);//隐藏分段标头
  }
  return super.getview(position, view, parent);
 }
}

主界面

public class hack26activity extends listactivity {
  private textview topheader;//用于访问分段标头
  private int topvisibleposition = -1;
  @override
  protected void oncreate(bundle savedinstancestate) {
    super.oncreate(savedinstancestate);
    setcontentview(r.layout.list);
    topheader = (textview) findviewbyid(r.id.header);
    setlistadapter(new sectionadapter(this, countries.countries));
    //设置滚动监听器,当用户滚动列表时,检查位置是否发生了变化,如果改变,调用settopheader更新悬浮的分段标头,当列表第一次显示时,确保根据第一个列表项初始化分段标头
    getlistview().setonscrolllistener(
        new abslistview.onscrolllistener() {
          @override
          public void onscrollstatechanged(abslistview view,
                           int scrollstate) {
            // empty.
          }

          @override
          public void onscroll(abslistview view, int firstvisibleitem,
                     int visibleitemcount, int totalitemcount) {
            if (firstvisibleitem != topvisibleposition) {
              topvisibleposition = firstvisibleitem;
              settopheader(firstvisibleitem);
            }
          }
        });
    settopheader(0);
  }

  private void settopheader(int pos) {
    final string text = countries.countries[pos].substring(0, 1);
    topheader.settext(text);//更新文本内容
  }
}

以上这篇android 为listview添加分段标头的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。