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

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

时间:2015-03-30 16:00:55      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

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自带包实现下拉刷新功能

标签:

原文地址:http://www.cnblogs.com/gcczhongduan/p/4378126.html

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