<CheckBox android:text="WWW" android:id="@+id/ataaw1"
android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox>
<CheckBox android:text="ATAAW" android:id="@+id/ataaw2"
android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox>
<CheckBox android:text="COM" android:id="@+id/ataaw3"
android:layout_width="wrap_content" android:layout_height="wrap_content"></CheckBox>
}
CheckBox www = (CheckBox) this.findViewById(R.id.ataaw1);
CheckBox ataaw = (CheckBox) this.findViewById(R.id.ataaw2);
CheckBox com = (CheckBox) this.findViewById(R.id.ataaw3);
www.setOnCheckedChangeListen
ataaw.setOnCheckedChangeListen
com.setOnCheckedChangeListen
以上即是Android开发中复选框的基本使用方法。