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

android com.handmark.pulltorefresh 使用技巧

时间:2015-07-18 22:44:26      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

近期使用android com.handmark.pulltorefresh 遇到一些小问题。如今总结一些:

集体使用教程见:

http://blog.csdn.net/harvic880925/article/details/17680305

http://blog.csdn.net/flybywind/article/details/8977734

1:设置单边 刷新:

mPullRefreshListView.setMode(Mode.PULL_FROM_END);//向下拉刷新


 mPullRefreshListView.setMode(Mode.PULL_FROM_START);//向上拉刷新


mPullRefreshListView.setMode(Mode.BOTH);//两端刷新

2:改动提示文字:

默认的提示文字不一定适合你,你能够进行改动

  pullToRefreshScrollView.getHeaderLayout().setReleaseLabel("改动下拉刷新释放的时候的文字");
   pullToRefreshScrollView.getFooterLayout().setReleaseLabel("");
详细的header和footer是封装在一个类里面:

com.handmark.pulltorefresh.library.internal.LoadingLayout这个里面写这个详细的文字设置

setPullLabel("下拉刷新…")
setRefreshingLabel("正在加载…")
setReleaseLabel</span>("放开刷新…")




版权声明:本文博客原创文章,博客,未经同意,不得转载。

android com.handmark.pulltorefresh 使用技巧

标签:

原文地址:http://www.cnblogs.com/lcchuguo/p/4657737.html

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