PullToRefreshListView

百度下载PullToRefreshListView的第三方library

导入项目使用:

<com.handmark.pulltorefresh.library.PullToRefreshListView xmlns:ptr="http://schemas.android.com/apk/res-auto"
        android:id="@+id/shopListView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:cacheColorHint="#ffffff"
        android:divider="@color/line_color"      //分割线的颜色
        android:dividerHeight="0dp"              //分割线的宽度为0时   没有分割线
        android:fillViewport="true"
        ptr:ptrAnimationStyle="flip"
        ptr:ptrMode="pullUpFromBottom"           //设置刷新类型   此处为上拉
        ptr:ptrHeaderTextColor="@color/text_color_gray"
        />

如果ptrMode定义为both,即允许上下拉都可以,应该使用 public final void setOnRefreshListener(OnRefreshListener2<T> listener)  这个函数来设定listener

你可能感兴趣的:(android,刷新)