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

来源:互联网 发布:少儿编程 童程童美 编辑:程序博客网 时间:2024/05/24 02:46

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这个类,我已上传上来了,可以到这里下载

 下载包

 

0 0
原创粉丝点击