你的位置:首页 > 软件开发 > 操作系统 > 简单的下拉刷新以及优化

简单的下拉刷新以及优化

发布时间:2015-11-24 17:01:58
代码工程简要说明:以一个SwipeRefreshLayout包裹ListView,SwipeRefreshLayout接管ListView的下拉事件,若ListView被用户触发下拉动作后,SwipeRefreshLayout启动下拉刷新的UI表现样式,下拉刷新完毕,在Swipe ...

简单的下拉刷新以及优化

简单的下拉刷新以及优化

代码工程简要说明:以一个SwipeRefreshLayout包裹ListView,SwipeRefreshLayout接管ListView的下拉事件,若ListView被用户触发下拉动作后,SwipeRefreshLayout启动下拉刷新的UI表现样式,下拉刷新完毕,在SwipeRefreshLayout提供的接口中回调更新ListView中的数据。

activity_main.

 1 <RelativeLayout ="http://schemas.android.com/apk/res/android" 2   ="http://schemas.android.com/tools" 3   android:layout_width="match_parent" 4   android:layout_height="match_parent" 5   tools:context="com.zzw.testswiperefreshlayout.MainActivity" > 6  7   <android.support.v4.widget.SwipeRefreshLayout 8     android:id="@+id/swipeRefreshLayoyut" 9     android:layout_width="match_parent"10     android:layout_height="match_parent" >11 12     <ListView13       android:id="@+id/listView"14       android:layout_width="match_parent"15       android:layout_height="match_parent" />16   </android.support.v4.widget.SwipeRefreshLayout>17 18 </RelativeLayout>

原标题:简单的下拉刷新以及优化

关键词:

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录