Android水滴效果的滑动切换页面:SpringIndicator

该项目实现了水滴效果的滑动切换页面功能,水滴的实现类似于Path2.0的下拉刷新时水滴落下的效果。

gif

用法


添加依赖至你的build.gradle.

dependencies {
    compile 'com.github.chenupt.android:springindicator:1.0.1@aar'
}

添加indicator至你的布局

<github.chenupt.springindicator.SpringIndicator
    xmlns:app="http://schemas.android.com/apk/res-auto"
    app:siTextSize="18sp"
    app:siIndicatorColors="@array/indicator_colors"
    app:siTextColor="@color/colorPrimaryDark"
    app:siSelectedTextColor="@android:color/white"
    app:siIndicatorColor="@color/colorPrimary"
    android:id="@+id/indicator"
    android:layout_width="match_parent"
    android:layout_height="56dp"/>

Setup with your viewPager.

springIndicator.setViewPager(viewPager);

项目主页:http://www.open-open.com/lib/view/home/1426474795101

猜你喜欢

转载自lishuaishuai.iteye.com/blog/2297092