码迷,mamicode.com
首页 > 其他好文 > 详细

商城热卖

时间:2016-11-06 11:22:01      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:bsp   from   下拉刷新   more   targe   ref   加载更多   master   技术   

技术分享

 1.商品展示页面的请求地址

http://112.124.22.238:8081/course_api/wares/hot?pageSize=10&curPage=1

下一页 http://112.124.22.238:8081/course_api/wares/hot?pageSize=10&curPage=2

2.下拉刷新&加载更多

/**
 * 下拉刷新数据
 */
private void refreshData() {
    curPage = 1;
    state = STATE_REFRESH;
    getDataFromNet();
}

  

/**
 * 加载更多
 */
private void loadMoreData() {
    curPage = curPage+1;
    state = STATE_MORE;
    getDataFromNet();
}

  

github完整代码:https://github.com/ganchuanpu/BeijingNews/tree/master/app

 

商城热卖

标签:bsp   from   下拉刷新   more   targe   ref   加载更多   master   技术   

原文地址:http://www.cnblogs.com/ganchuanpu/p/6034395.html

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