码迷,mamicode.com
首页 > 其他好文 > 详细

使用google自带包实现下拉刷新功能

时间:2014-06-05 12:04:14      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:swiperefreshlayout 下   android   

android 实现下拉刷新有很多开源的源码可以用 比如 :PullToRefreshListView  使用起来也很方便

现在还可以直接使用google libs下面的 android-support-v4.jar 这个包来实现了,请更新你的sdk到最新

 

使用 xml 布局

<android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/refresh"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
  
     >
<ListView
   android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/listview"
    ></ListView>
  

</android.support.v4.widget.SwipeRefreshLayout>

 

最外层是 android.support.v4包里面的一个类 SwipeRefreshLayout ,在它里面放入任意view控件就行了。

 

代码里面:

 

 

SwipeRefreshLayout 具体的方法,大家看看api文档

项目里面的  android-support-v4.jar 可能没有SwipeRefreshLayout这个类,我已上传上来了,可以到这里下载

 下载包

 

使用google自带包实现下拉刷新功能,布布扣,bubuko.com

使用google自带包实现下拉刷新功能

标签:swiperefreshlayout 下   android   

原文地址:http://blog.csdn.net/hhhccckkk/article/details/27340649

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!