checkbox是Android中的一个常用的控件,其中全选功能是对其功能实现的一个简单的扩展,那么接下来我们来看一下要如何实现全选功能。
首先,我们先创建一个普通的项目,修改其activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.LinearLayoutCompat 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="match_parent"
android:orientation="vertical"
tools:context="com.example.song4.myapplication.MainActivity">
<CheckBox
android:id="@+id/all"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="全选"
/>
<CheckBox