Android 带CheckBox的ListView 实现多选,全选,反选,删除

本文展示了如何在Android应用中实现一个包含ListView的界面,该列表具有选择、删除、反选和全选功能。当用户长按列表项时,会显示一个操作栏供用户进行编辑操作,如取消选择、删除所选项目等。同时,文章还详细描述了各个功能的实现逻辑,包括监听器的设置和数据同步。
摘要由CSDN通过智能技术生成
<?xml version="1.0" encoding="utf-8"?>
 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <ListView
        android:id="@+id/lv"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ll_edit_bar"></ListView>
    <View
        android:layout_width="match_parent"
        android:layout_height="1px"
        android:layout_below="@+id/lv"
        android:background="@color/color_gray"/>
    <LinearLayout
        android:id="@+id/ll_edit_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="4dp"
        android:background="@color/color_white"
        android:orientation="horizontal"
        android:translationZ="10dp"
        android:layout_alignParentBottom="true"
        android:visibility="gone">
 
        <LinearLayout
            android:id="@+id/ll_cancel"
            style="@style/EditBarItemStyle">
 
            <ImageView
                style="@style/EditBarImageViewStyle"
                android:src="@drawable/ic_cancel" />
 
            <TextView
                style="@style/EditBarTextViewStyle"
                android:text="@string/str_cancel" />
        </LinearLayout>
 
        <LinearLayout
            android:id="@+id/ll_delete"
            style="@style/EditBarItemStyle">
 
            <ImageView
                style="@style/EditBarImageViewStyle"
                android:layout_height="17dp"
                android:src="@drawable/ic_delete_blue" />
 
            <TextView
                style="@style/EditBarTextViewStyle"
                android:text="@string/str_delete" />
        </LinearLayout>
 
        <LinearLayout
            android:id="@+id/ll_inverse"
            style="@style/EditBarItemStyle">
 
            <ImageView
                style="@style/EditBarImageViewStyle"
                android:src="@drawable/ic_inverse" />
 
            <TextView
                style="@style/EditBarTextViewStyle"
                android:text="@string/str_inverse" />
        </LinearLayout>
 
        <LinearLayout
            android:id="@+id/ll_select_all"
            style="@style/EditBarItemStyle">
 
            <ImageView
                style="@style/EditBarImageViewStyle"
                android:src="@drawable/ic_select_all" />
            <TextView
                style="@style/EditBarTextViewStyle"
                android:text="@string/str_select_all" />
        </LinearLayout>
    </LinearLayout>
 
</RelativeLayout>
 
 
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
 
    android:orientation="horizontal">
 
    <TextView
        android:id="@+id/tv_data"
        android:layout_width="0dp"
        android:layout_height="50dp"
        android:layout_marginLeft="15dp"
        android:layout_weight="1"
        android:gravity="center_vertical"
        android:text="111111"
        android:textColor="@color/colorPrimary" />
 
    <CheckBox
        android:id="@+id/chb_select_way_point"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:buttonTint="@color/color_blue"
        android
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值