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

android-PullRefreshLayout使用

时间:2017-06-04 19:54:29      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:overflow   cycle   git   pac   layout   important   middle   分享   post   

类似与谷歌的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使用

标签:overflow   cycle   git   pac   layout   important   middle   分享   post   

原文地址:http://www.cnblogs.com/wzjhoutai/p/6941459.html

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