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

下拉加载延迟方法

时间:2016-08-23 16:13:17      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:

xListView.setXListViewListener(new IXListViewListener() {

            // 下拉刷新的回调方法
            public void onRefresh() {

                data.clear();

                // TODO Auto-generated method stub

                zixiancheng();
                new Handler().postDelayed(new Runnable() {
                    public void run() {
                        count = 20;
                        xListView.stopRefresh();
                    }
                }, 1000);

                // // 下拉刷新,应该展示最新数据,所以清空集合
                // arrayAdapter.notifyDataSetChanged();
                //
                // // 设置刷新时间
                // xListView.setRefreshTime(dateFormat());
                // // 停止加载更多
                // xListView.stopLoadMore();
                // // 停止刷新
                // xListView.stopRefresh();

            }

            // //上拉加载的回调方法
            public void onLoadMore() {

                zixiancheng();
                new Handler().postDelayed(new Runnable() {

                    public void run() {
                        count += 20;
                        xListView.stopLoadMore();
                    }
                }, 1000);

                // arrayAdapter.notifyDataSetChanged();
                //
                // // 停止加载更多
                // xListView.stopLoadMore();
                // // 停止刷新
                // xListView.stopRefresh();
            }
        });

下拉加载延迟方法

标签:

原文地址:http://www.cnblogs.com/tiankonglan/p/5799526.html

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