xlistviewlibrary下拉刷新,上拉加载更多

本文介绍如何在Android应用中使用XListView库实现下拉刷新和上拉加载功能。通过设置XListView监听器,清空列表和请求网络数据来更新UI。文章详细解释了如何通过异步任务获取网络数据并解析JSON,最后更新适配器以显示最新数据。
摘要由CSDN通过智能技术生成

1,首先先导入依赖xlistviewlibrary

需要用到的控件

<com.bwie.******.xlistviewlibrary.view.XListView
    android:id="@+id/xlv"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

//获取解析网络的地址的不同

getNetData(0);

    xListView.setPullLoadEnable(true);  // 允许上拉加载更多;


    xListView.setXListViewListener(new XListView.IXListViewListener() {
        /**
         * 下拉---刷新
         */
        @Override
        public void onRefresh() {
            list.clear();   //清空集合
            getNetData(0);//    请求第0页,也就是服务器最新的一页数据;
            page=0; // 把page置0;
        }

        /**
         * 上拉 --- 加载更多
         */
        @Override
        public void onLoadMore() {
            page++;
            getNetData(page);

        }
    });



}

/**
 * 请求网络
 * 先定义一个 int page=0;
 */
private void getNetData(int page) {
    //baseUrl = http://api.expoon.com/AppNews/getNewsList/type/1/p/

    // 拼接后 = http://api.expoon.com/AppNews/getNewsList/type/1/p/3
    new MAsyncTask().execute(baseUrl+page);.

private class MAsyncTask extends AsyncTask<String, Void, String> {

    @Override
    protected String doInBackground(String... strings) {
        return NetWordUtils.getNetjson(strings[0]);
    }

    @Override
    protected void onPostExecute(String s) {
        super.onPostExecute(s);
        Gson gson = new Gson();
        Goods goods = gson.fromJson(s, Goods.class);
        List<Goods.DataBean> dataTemp = goods.getData();
        list.addAll(dataTemp);
        //更新适配器
        mAdapter.notifyDataSetChanged();
        //让刷新头和刷新底部 消失;
        uiComplete();

    }
}

private void uiComplete() {

    xListView.stopRefresh();
    xListView.stopLoadMore();
    /***/
     SimpleDateFormat simpleDateFormat  = new SimpleDateFormat("yyyy--MM-dd HH:MM:SS E");
    String format = simpleDateFormat.format(new Date());
    //获取上次刷新的时间
    xListView.setRefreshTime("fromt");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值