Android列表,筛选 ,使用RecyclerView的全选、全不选、删除

原文链接:https://www.jianshu.com/p/7e1e0da67864

1.布局界面
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:orientation="vertical">

    <include layout="@layout/action_common_bar" />

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />

    <RelativeLayout
        android:id="@+id/layout_edit"
        android:layout_width="match_parent"
        android:layout_height="@dimen/head_line_height"
        android:visibility="gone"
        tools:visibility="visible">

        <RadioButton
            android:id="@+id/rb_select_all"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:text="全选"
            android:textColor="@color/shop_text_selecter"
            android:textSize="16sp" />

        <Button
            android:id="@+id/btn_del"
            style="@style/DefaultOrangeButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_marginLeft="8dp"
            android:layout_marginTop="4dp"
            android:layout_marginRight="16dp"
            android:layout_marginBottom="4dp"
            android:text="删除" />
    </RelativeLayout>
</LinearLayout>
2.RecyclerView的适配器
public class MyCollectionAdapter extends BaseQuickAdapter<GoodsInfo, DataBindBaseViewHolder> {
    private ArrayList<Integer> selectArrays = new ArrayList<>();//选中数据项在列表中的位置集合
    private boolean isShowSelectBtn;//是否显示选中按钮,默认不显示
    private boolean isSelectAll;//外部【全选】按钮是否为选中状态
    public onSelectAllListener listener;//选中和取消选中监听器

    public void setListener(onSelectAllListener listener) {
        this.listener = listener;
    }

    public interface onSelectAllListener {
        void cancleSelectAll();

        void selectAll();
    }

    public MyCollectionAdapter() {
        super(R.layout.item_my_collection);
    }

    /**
     * 选中/取消
     *
     * @param selectPosition
     */
    public void setSelectPosition(Integer selectPosition) {
        boolean contains = selectArrays.contains(selectPosition);
        if (contains) {
            selectArrays.remove(selectPosition);
            //取消一项后,如果全选按钮的状态为:选中,应该取消全选按钮选中状态,但不触发取消所有列表已经选中项的事件
            if (isSelectAll) {
                isSelectAll = false;
                if (listener != null) listener.cancleSelectAll();
            }
        } else {
            //如果添加一项后,(外部[全选按钮]为:未选中&&列表数据全部选中),那么设置全选按钮为选中状态,不触发选中事件
            selectArrays.add(selectPosition);
            if (!isSelectAll && isSelectAllData()) {
                isSelectAll = true;
                if (listener != null) listener.selectAll();
            }
        }
        Collections.sort(selectArrays);
        notifyItemChanged(selectPosition);
    }

    /**
     * 全选
     */
    public void selectAll() {
        for (int i = 0; i < mData.size(); i++) {
            boolean contains = selectArrays.contains(i);
            if (!contains) selectArrays.add(i);
        }
        Collections.sort(selectArrays);//进行排序,避免因为选择前后顺序不一致,导致更新位置越界
        L.e("selectArrays==" + selectArrays.toString());
        notifyDataSetChanged();
        isSelectAll = true;
    }

    /**
     * 取消全选
     */
    public void cancleAll() {
        selectArrays.clear();
        notifyDataSetChanged();
        isSelectAll = false;
    }

    /**
     * 是否选中了所有的数据
     * 用来设定RadioButton状态
     */
    public boolean isSelectAllData() {
        return mData.size() == selectArrays.size();
    }

    /**
     * 删除选中项
     * position 为选中数据项在列表中的位置,如0,1,2,3
     * i 为当前集合遍历位置,所以remove()移除时要使用position-i
     * 例如选中 position  1和3,那么遍历两次i为 0,1
     * 由于第一次移除位置1的时候,列表数据少了一项,所以原来位置为3的变成了位置2,所以3-1=2
     * 也就是position-i才会拿到正确的列表数据位置
     */
    public void delSelect() {
        for (int i = 0; i < selectArrays.size(); i++) {
            Integer position = selectArrays.get(i);
            remove(position - i);
        }
        selectArrays.clear();
    }

    /**
     * 获得所有选中的收藏,并组装为id集合,以“,”分割的字符串
     * 方便接口删除收藏项
     *
     * @return
     */
    public String getAllSelectIds() {
        if (selectArrays.size() == 0) return "";
        StringBuffer buffer = new StringBuffer();
        for (int i = 0; i < selectArrays.size(); i++) {
            GoodsInfo dataBean = mData.get(selectArrays.get(i));
            String goodsId = dataBean.getItemId();
            buffer.append(goodsId);
            if (i < selectArrays.size() - 1) buffer.append(",");
        }
        return buffer.toString();
    }

    /**
     * 显示和隐藏操作按钮
     *
     * @param showSelectBtn
     */
    public void setShowSelectBtn(boolean showSelectBtn) {
        isShowSelectBtn = showSelectBtn;
        notifyDataSetChanged();
    }

    @Override
    protected void convert(DataBindBaseViewHolder helper, GoodsInfo item) {
        ItemMyCollectionBinding binding = (ItemMyCollectionBinding) helper.getBinding();
        binding.setItem(item);
        binding.couponPrice.setCouponText(item.getCouponMoney() + "元");
        helper.addOnClickListener(R.id.rb_select);
        //是否显示操作按钮
        if (isShowSelectBtn) {
            binding.rbSelect.setVisibility(View.VISIBLE);
            boolean contains = selectArrays.contains(helper.getLayoutPosition());//是否选中
            binding.rbSelect.setChecked(contains);
        } else {
            binding.rbSelect.setVisibility(View.GONE);
        }
    }

}

其中适配器布局文件item_my_collection

<?xml version="1.0" encoding="utf-8"?>
<layout>
    <data>
        <import type="cn.com.smallcake_utils.SpannableStringUtils" />
        <variable
            name="item"
            type="**.GoodsInfo" />
    </data>
    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/white">
        <RadioButton
            android:id="@+id/rb_select"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:visibility="gone"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            tools:visibility="visible" />
        <ImageView
            android:id="@+id/iv_pict_url"
            imageRoundUrl="@{item.itemPic}"
            android:layout_width="130dp"
            android:layout_height="130dp"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginTop="8dp"
            android:layout_marginBottom="8dp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toEndOf="@+id/rb_select"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintVertical_bias="0.0"
            tools:src="@mipmap/logo" />
        <TextView
            android:id="@+id/tv_title"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginTop="8dp"
            android:layout_marginEnd="4dp"
            android:layout_marginRight="4dp"
            android:maxLines="2"
            android:text="@{item.itemTitle}"
            android:textColor="@color/text_black"
            android:textSize="14sp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toEndOf="@+id/iv_pict_url"
            app:layout_constraintTop_toTopOf="parent"
            tools:text="婴儿湿巾80抽x5包便携式迷你带盖批发新生儿棉柔巾婴儿湿巾80抽x5包便携式迷你带盖批发新生儿棉柔巾" />
        <ImageView
            android:id="@+id/iv_user_type"
            isTmall="@{item.isTmall}"
            android:layout_width="14dp"
            android:layout_height="14dp"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginTop="8dp"
            android:src="@mipmap/icon_tmall"
            app:layout_constraintStart_toEndOf="@+id/iv_pict_url"
            app:layout_constraintTop_toBottomOf="@+id/tv_title" />

        <TextView
            android:id="@+id/tv_shop_title"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginStart="2dp"
            android:layout_marginLeft="2dp"
            android:layout_weight="1"
            android:ellipsize="end"
            android:maxLines="1"
            android:text="@{item.shopName}"
            android:textSize="12sp"
            app:layout_constraintBottom_toBottomOf="@+id/iv_user_type"
            app:layout_constraintEnd_toStartOf="@+id/tv_volume"
            app:layout_constraintStart_toEndOf="@+id/iv_user_type"
            app:layout_constraintTop_toTopOf="@+id/iv_user_type"
            tools:text="天真贝比旗舰店" />
        <TextView
            android:id="@+id/tv_volume"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:text='@{@string/sold+item.itemSale}'
            android:textSize="12sp"
            app:layout_constraintBottom_toBottomOf="@+id/tv_shop_title"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="1.0"
            app:layout_constraintStart_toEndOf="@+id/tv_shop_title"
            app:layout_constraintTop_toTopOf="@+id/tv_shop_title"
            app:layout_constraintVertical_bias="0.0"
            tools:text="@string/sold" />
        <TextView
            android:id="@+id/tv_commission_price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginBottom="8dp"
            android:background="@drawable/round2_pink_bg"
            android:ellipsize="start"
            android:paddingLeft="4dp"
            android:paddingTop="2dp"
            android:paddingRight="4dp"
            android:paddingBottom="2dp"
            android:singleLine="true"
            android:text='@{@string/ygsy_y+item.commision}'
            android:textColor="@color/tab_orange"
            android:textSize="12sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            tools:text="预估收益10元" />
        <**.CouponBg
            android:id="@+id/coupon_price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:layout_marginBottom="8dp"
            app:layout_constraintBottom_toTopOf="@+id/tv_commission_price"
            app:layout_constraintEnd_toEndOf="parent"
            tools:coupon_price="15元" />
        <TextView
            android:id="@+id/tv_zk_final_price"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginBottom="8dp"
            android:ellipsize="start"
            android:singleLine="true"
            android:text='@{SpannableStringUtils.getBuilder(@string/quan_hou).setProportion(0.8f).append(@string/rmb_symbol).setProportion(0.7f).setBold().append(item.itemEndPrice).setBold().create()}'
            android:textColor="@color/tab_orange"
            android:textSize="16sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toStartOf="@+id/tv_commission_price"
            app:layout_constraintStart_toEndOf="@+id/iv_pict_url"
            tools:text="券后¥19.8" />
        <TextView
            android:id="@+id/tv_reserve_price"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginBottom="4dp"
            android:text='@{SpannableStringUtils.getBuilder(@string/yuan_jia+item.itemPrice).setStrikethrough().create()}'
            android:textColor="@color/text_gray"
            android:textSize="11sp"
            app:layout_constraintBottom_toTopOf="@+id/tv_zk_final_price"
            app:layout_constraintStart_toEndOf="@+id/iv_pict_url"
            tools:text="原价¥149.9" />
        <View
            android:layout_width="match_parent"
            android:layout_height="1.5dp"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:background="@drawable/h_gray_dot_line"
            android:layerType="software"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent" />
    </android.support.constraint.ConstraintLayout>
</layout>
3.使用,主要就三个操作+适配器操作
    @OnClick({R.id.tv_right, R.id.rb_select_all, R.id.btn_del})
    public void doClicks(View view) {
        switch (view.getId()) {
            case R.id.tv_right://操作的显示和隐藏
                edit();
                break;
            case R.id.rb_select_all://全选/取消全选
                clickSelectAll();
                break;
            case R.id.btn_del://删除
                del();
                break;
        }
    }
  • a.点击顶部右侧,来显示和隐藏列表中的操作按钮和底部的全选删除按钮edit()
    private void edit() {
        String s = tvRight.getText().toString();
        if (s.equals("管理")){
            tvRight.setText("取消");
            mAdapter.setShowSelectBtn(true);
            layoutEdit.setVisibility(View.VISIBLE);
        }else {
            tvRight.setText("管理");
            mAdapter.setShowSelectBtn(false);
            layoutEdit.setVisibility(View.GONE);
        }
    }
  • b.全选按钮的触发效果
    private void clickSelectAll() {
        if (mAdapter.isSelectAllData()) {
            rbSelectAll.setChecked(false);
            mAdapter.cancleAll();
        } else {
            rbSelectAll.setChecked(true);
            mAdapter.selectAll();
        }
    }
  • c.删除
    private void del() {
        String allSelectIds = mAdapter.getAllSelectIds();
        if (TextUtils.isEmpty(allSelectIds)) {
            ToastUtil.showLong("未选中任何项!");
            return;
        }
        //刷新适配器
        dataProvider.user.delCol(user.getUid(), user.getToken(), allSelectIds)
                .subscribe(new OnSuccessAndFailListener<BaseResponse>(dialog) {
                    @Override
                    protected void onSuccess(BaseResponse baseResponse) {
                        ToastUtil.showLong(baseResponse.getMsg());
                        //刷新适配器
                        mAdapter.delSelect();
                    }
                });
    }
  • d.适配器操作
    private void onEvent() {
        //加载更多
        mAdapter.setOnLoadMoreListener(new BaseQuickAdapter.RequestLoadMoreListener() {
            @Override
            public void onLoadMoreRequested() {
                if (page < totalPages) {
                    page++;
                    getMyCollection();
                } else {
                    mAdapter.loadMoreEnd();
                }
            }
        }, recyclerView);
        //进入商品详情
        mAdapter.setOnItemClickListener(new BaseQuickAdapter.OnItemClickListener() {
            @Override
            public void onItemClick(BaseQuickAdapter adapter, View view, int position) {
                GoodsInfo item = (GoodsInfo) adapter.getItem(position);
                jumpToFragmentByType(item);
            }
        });

        //单条数据项的选中和取消选中
        mAdapter.setOnItemChildClickListener(new BaseQuickAdapter.OnItemChildClickListener() {
            @Override
            public void onItemChildClick(BaseQuickAdapter adapter, View view, int position) {
                mAdapter.setSelectPosition(position);
            }
        });

        //全选后,取消一项,解除全选按钮选中状态,选中一项后,如果已经全选,改变全选按钮状态为选中
        mAdapter.setListener(new MyCollectionAdapter.onSelectAllListener() {
            @Override
            public void cancleSelectAll() {
                rbSelectAll.setChecked(false);
            }

            @Override
            public void selectAll() {
                rbSelectAll.setChecked(true);
            }
        });
    }

PS:适配器使用BaseRecyclerViewAdapterHelper+DataBind的方式,效果如下:

全选,单选
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,179评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,229评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,032评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,533评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,531评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,539评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,916评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,813评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,568评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,654评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,354评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,937评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,918评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,152评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,852评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,378评论 2 342