Home

Awesome

RefreshLayout

项目特点

image

 APK下载

Download

 Demo使用

运行demo需删除gradle.properties中的代理

systemProp.http.proxyHost=dev-proxy.oa.com
systemProp.http.proxyPort=8080
systemProp.https.proxyHost=dev-proxy.oa.com
systemProp.https.proxyPort=8080

Gradle配置

compile 'xiao.free.refreshlayout:refreshlayoutlib:v1.0.0'

XML配置

<xiao.free.refreshlayoutlib.SwipeRefreshLayout
        android:id="@+id/swiperefreshlayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <include
            android:id="@id/swipe_refresh_header"
            layout="@layout/layout_classic_header" />

        <ListView
            android:id="@id/swipe_target"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:clipToPadding="false" />

        <include
            android:id="@id/swipe_load_more_footer"
            layout="@layout/layout_classic_footer" />

</xiao.free.refreshlayoutlib.SwipeRefreshLayout>

属性说明

属性说明
refresh_enabled刷新使能
load_more_enabled加载使能
swipe_styleheader和footer模式
drag_ratiodrag阻尼系数,越小越难拉动
refresh_trigger_offset触发刷新的偏移,默认为header高度
load_more_trigger_offset触发加载更多的偏移,默认为footer高度
refresh_final_drag_offset下拉最大偏移,默认为0
load_more_final_drag_offset加载更多最大偏移,默认为0

效果图

如下图所示:

image image image image

使用bug注意

id注意事项
xml布局中header的id需定义为swipe_refresh_header
目标view id需定义为swipe_target
xml布局中footer的id需定义为swipe_refresh_header

image