如何增加下拉刷新功能?
采用了开源库android-Ultra-Pull-To-Refresh
工具准备
- 更新最新的PandaAndroidLib
集成清单
- fragment 继承 NetFragment
- 集成PtrClassicFrameLayout组件
<in.srain.cube.views.ptr.PtrClassicFrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:cube_ptr="http://schemas.android.com/apk/res-auto"
android:id="@+id/net_ptr"
android:layout_width="match_parent"
android:layout_height="match_parent"
cube_ptr:ptr_duration_to_close="200"
cube_ptr:ptr_duration_to_close_header="1000"
cube_ptr:ptr_keep_header_when_refresh="true"
cube_ptr:ptr_pull_to_fresh="false"
cube_ptr:ptr_ratio_of_header_height_to_refresh="1.2"
cube_ptr:ptr_resistance="1.7">
<自定义 android:id="@+id/net_result">
需要相应下拉动作的区域空间放在这里……
!!!注意:PtrClassicFrameLayout的子元素只能是1个元素,且其id必须为net_result
<自定义/>
</in.srain.cube.views.ptr.PtrClassicFrameLayout>
- 在设备上测试验证,End~