码迷,mamicode.com
首页 > 移动开发 > 详细

android-PullRefreshLayout使用

时间:2015-07-06 19:55:54      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:android-pullrefreshl   pullrefreshlayout   android   

类似与谷歌的SwipeRefreshLayout,但比SwipeRefreshLayout漂亮。

运行效果:

技术分享

使用说明:

使用方法和SwipeRefreshLayout差不多。

在xml中:

1
2
3
4
5
6
<com.baoyz.widget.PullRefreshLayout
    android:id="@+id/swipeRefreshLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <!-- ListView、ScrollView、RecyclerView、Other -->
</com.baoyz.widget.PullRefreshLayout>

实例化:

1
2
3
4
5
6
7
8
9
10
PullRefreshLayout layout = (PullRefreshLayout) findViewById(...);
// listen refresh event
layout.setOnRefreshListener(new PullRefreshLayout.OnRefreshListener() {
    @Override
    public void onRefresh() {
        // start refresh
    }
});
// refresh complete
layout.setRefreshing(false);

改变刷新样式: 

1
layout.setRefreshStyle(PullRefreshLayout.STYLE_CIRCLES);

有三种样式,分别是:CIRCLES、 WATER_DROP 和 RING


Github下载:https://github.com/baoyongzhang/android-PullRefreshLayout

如果墙不方便:点击下载

版权声明:本文为博主原创文章,未经博主允许不得转载。

android-PullRefreshLayout使用

标签:android-pullrefreshl   pullrefreshlayout   android   

原文地址:http://blog.csdn.net/onceing/article/details/46777189

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