您的位置:首页 > 编程语言 > Go语言

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

2015-03-30 15:10 375 查看
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这个类,我已上传上来了,能够到这里下载

下载包
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: