转载于http://blog.csdn.net/mmjiajia132/article/details/40397813
PullToRefreshListView 用法和ListView 没有什么区别 listview能用的属性 pulltorefresh也能用
我一直认为动手是最好的学习方法...
一:首先看布局文件
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
-
- <!--ptr:ptrAnimationStyle="flip"flip:翻转rotate:旋转-->
- <!--ptr:ptrShowIndicator="true"右上角右下角出现箭头-->
- <com.handmark.pulltorefresh.library.PullToRefreshListView
- xmlns:ptr="http://schemas.android.com/apk/res-auto"
- android:id="@+id/pullToRefresh"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- ptr:ptrDrawable="@drawable/default_ptr_flip"
- ptr:ptrAnimationStyle="flip"
- ptr:ptrHeaderBackground="#383838"
- ptr:ptrHeaderTextColor="#FFFFFF"
- />
-
- </LinearLayout>
ptr是pullToRefresh的配置属性 使用是需要添加xmlns:ptr="http://schemas.android.com/apk/res-auto"
ptr:ptrDrawable=“” 上拉下拉图标
ptr:ptrAnimationStyle="" 图标动画 取值: flip:翻转 rotate旋转
ptr:ptrHeaderBackground="" 上拉下拉时 头部的背景色
ptr:ptrHeaderTextColor="" 上拉下拉时 文字颜色
还有一些常用属性
ptrRefreshableViewBackground 设置整个mPullRefreshListView的背景色
ptrScrollingWhileRefreshingEnabled刷新的时候,是否允许ListView或GridView滚动。觉得为true比较好。
ptrListViewExtrasEnabled 决定了Header,Footer以何种方式加入mPullRefreshListView,true为headView方式加入,就是滚动时刷新头部会一起滚动。
注:上述属性都可以代码添加,请用pullToRefresh.set查看
二:MainActivity代码
pullToRefresh适配器Adapter和listview也是继承于BaseAdapter 看一下item的布局
item.xml
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="5dp"
- android:orientation="vertical">
-
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="18sp"
- android:textColor="#BA55D3"
- android:text="我的神"/>
-
- <TextView
- android:id="@+id/content"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textSize="14.0sp"
- android:layout_marginTop="5dp"
- android:textColor="#7CFC00"
- android:text="我的神"/>
- </LinearLayout>
pullToRefresh 通过setMode来设置是否可以上拉下拉
Mode.BOTH:同时支持上拉下拉
Mode.PULL_FROM_START:只支持下拉Pulling Down
Mode.PULL_FROM_END:只支持上拉Pulling Up
也可以用ptr:ptrMode="both"
可选值为:disabled(禁用下拉刷新),pullFromStart(仅支持下拉刷新),pullFromEnd(仅支持上拉刷新),both(二者都支持),manualOnly(只允许手动触发)
如果Mode设置成Mode.BOTH,需要设置刷新Listener为OnRefreshListener2,并实现onPullDownToRefresh()、onPullUpToRefresh()两个方法。
如果Mode设置成Mode.PULL_FROM_START或Mode.PULL_FROM_END,需要设置刷新Listener为OnRefreshListener,同时实现onRefresh()方法。
当然也可以设置为OnRefreshListener2,但是Mode.PULL_FROM_START的时候只调用onPullDownToRefresh()方法,Mode.PULL_FROM的时候只调用onPullUpToRefresh()方法.
如果想上拉、下拉刷新的时候 做一样的操作,那就用OnRefreshListener,上拉下拉的时候都调用
如果想上拉、下拉做不一样的的操作,那就在setOnRefreshListener时 用new OnRefreshListener2<ListView>
当然如果想自己设置上拉下拉中的文字 可以这样
- ILoadingLayoutstartLabels=pullToRefresh
- .getLoadingLayoutProxy(true,false);
- startLabels.setPullLabel("下拉刷新...");
- startLabels.setRefreshingLabel("正在载入...");
- startLabels.setReleaseLabel("放开刷新...");
-
- ILoadingLayoutendLabels=pullToRefresh.getLoadingLayoutProxy(
-
false,true);
- endLabels.setPullLabel("上拉刷新...");
- endLabels.setRefreshingLabel("正在载入...");
- endLabels.setReleaseLabel("放开刷新...");
当然也可以这样
- pullToRefresh.getLoadingLayoutProxy(false,true)
- .setPullLabel("上拉刷新...");
- pullToRefresh.getLoadingLayoutProxy(false,true).setReleaseLabel(
-
"放开刷新...");
- pullToRefresh.getLoadingLayoutProxy(false,true).setRefreshingLabel(
-
"正在加载...");
- pullToRefresh.getLoadingLayoutProxy(true,false)
- .setPullLabel("下拉刷新...");
- pullToRefresh.getLoadingLayoutProxy(true,false).setReleaseLabel(
-
"放开刷新...");
- pullToRefresh.getLoadingLayoutProxy(true,false).setRefreshingLabel(
-
"正在加载...");
显然在实际操作的时候也会用到其他监听
setOnScrollListener()
SCROLL_STATE_TOUCH_SCROLL 正在滚动
SCROLL_STATE_FLING 手指做了抛的动作(手指离开屏幕前,用力滑了一下)
SCROLL_STATE_IDLE 停止滚动
setOnLastItemVisibleListener
当用户拉到底时调用
setOnItemClickListener()
为pullToRefresh中每一个item设置事件
代码下载:点击下载代码
下拉上拉 图标和文字 位置改动是在PullToRefresh源代码中改的即:PullToRefreshListView.handleStyledAttributes 中lp的Gravity改为CENTER_VERTICAL
如果想要改动图标和文字的距离和布局 在这library项目下这两个文件改
pull_to_refresh_header_horizontal.xml
pull_to_refresh_header_vertical.xml
参考博客:
http://blog.csdn.net/lmj623565791/article/details/38238749
http://blog.csdn.net/harvic880925/article/details/17680305
谢谢原作者
分享到:
相关推荐
PullToRefreshListView的使用不仅可以提升应用的用户体验,还能让开发者更专注于数据的处理和业务逻辑,而不是下拉刷新的实现细节。随着Android组件化的不断发展,类似PullToRefreshListView这样的库,使得开发者能...
5. 自定义样式:为了使`PullToRefreshListView`更好地融入应用的UI设计,开发者可以自定义头部和底部视图的样式,包括颜色、字体、动画效果等。 在实际开发中,`PullToRefreshListView`的灵活性和可扩展性非常强。...
"PullToRefreshListView"通过封装相关逻辑,使得开发者无需从头实现这一复杂功能,只需几步即可集成到自己的应用中。 上拉加载(LoadMore)则是另一种实用的用户体验设计,当用户滚动到列表底部时,可以自动或手动...
在Android开发中,...总的来说,PullToRefreshListView是Android开发中增强用户体验的重要工具,通过合理的使用和定制,可以为应用程序增添不少亮点。理解其工作原理和使用方法,能有效提升应用的互动性和功能性。
通过学习和实践`PullToRefreshListView`,开发者不仅可以提升应用的用户体验,还能更好地理解Android中的事件监听、UI更新等核心概念。同时,这个组件也是Android开发中一个典型的封装与扩展案例,对于提高编程技巧...
通过分析和理解这些代码,你可以更好地掌握在Android应用中集成PullToRefreshListView的方法。 在实际开发中,除了使用第三方库外,你还可以利用Android官方提供的`SwipeRefreshLayout`,它提供了相似的功能,并且...
总的来说,PullToRefreshListView是Android开发中的一个实用功能,通过引入第三方库,开发者可以轻松实现这一特性,提升应用的用户体验。正确地集成和配置这些库,不仅需要对Android SDK有一定的了解,还需要掌握...
2. **示例应用**:可能有一个名为`app`的模块,包含了使用PullToRefreshListView的示例应用,开发者可以通过运行这个应用来了解如何集成和自定义控件。 3. **布局文件**:在res/layout目录中,会有XML布局文件定义...
在Android开发中,PullToRefreshListView是一种常见的组件,它允许用户通过下拉列表视图来刷新数据,模拟了类似微博、微信等应用的下拉刷新功能。本篇将详细讲解如何实现这一功能,并探讨相关的设计思路和处理逻辑。...
本实例"PullToRefreshListView的使用实例2"专注于如何集成并实现这一功能。下面我们将详细探讨这个知识点。 首先,PullToRefreshListView是基于Android的ListView组件进行扩展的一个库,它添加了一个可滑动的头部,...
在Android应用开发中,"PullToRefreshListView"是一个常见的组件,它允许用户通过下拉列表视图来触发数据的刷新,通常用于更新列表中的实时信息。这个组件在很多社交、新闻阅读类应用中广泛使用,提供了友好的用户...
PullToRefreshListView支持这一特性,使得开发者可以轻松地将无限滚动的效果集成到自己的应用中。 PullToRefreshListView的拓展性强体现在以下几个方面: 1. **自定义头部和尾部视图**:开发者可以根据需要创建...
《PullToRefreshListView:开源项目的探索与应用》 在Android应用开发中,用户交互体验是至关重要的一个环节,其中下拉刷新(PullToRefresh)功能已经成为了许多应用的标准配置,尤其是在列表视图(ListView)中。...
通过对PullToRefreshListView源码的深入学习,开发者不仅可以掌握这一组件的工作原理,还能提升在Android UI开发中的技能,为创建更优秀的应用打下坚实基础。在实际项目中,结合源码理解,可以灵活地调整和优化该...
在Android开发中,PullToRefresh(下拉刷新)是一种常见的用户界面设计,它允许用户通过在列表...通过这个实例,开发者能够掌握如何在自己的项目中集成和自定义`PullToRefreshListView`,提升应用的交互性和用户体验。
TreeListview 和 PullToRefreshListView 是 Android 开发中两种常见的组件,它们在移动应用开发中扮演着重要角色,尤其在处理大量数据展示和用户交互时。 TreeListview 是一种能够展示层级结构数据的视图,它扩展了...
本文将详细讲解如何在PullToRefreshListView中添加活动倒计时,并处理数据刷新时可能出现的倒计时错乱问题。 首先,我们需要理解倒计时的基本实现。Android提供了CountDownTimer类,它可以用来创建一个计时器,从...