Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1003 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 1003 Bytes

IndexMasterDemo

index

V1.0.0

  • 可以自己设置背景的状态
  • 可自定义textsize
  • 可自定义选中文字的颜色
  • 相关的接口回调

相关属性设置:

<com.lovejjfg.indexdemo.IndexBar
      android:id="@+id/index_bar"
      android:layout_width="30dp"
      app:normalColor="#ffff"
      app:selecColor="#00f"
      app:indexSize="14sp"
      android:layout_height="match_parent"
      android:layout_alignParentRight="true"
      android:background="@drawable/index_bar_bg"/>

相关回调:

  indexBar.setOnLetterChangeListener(new IndexBar.OnLetterChangeListener() {
          @Override
          public void onLetterChange(String letter) {
            //dosomething...
          }
      });

V1.0.1

1、支持字母和数字的类型 2、增加RecyclerView的Demo