今天学了checkbox的使用
<?xml version="1.0" encoding="utf-8"?> <LinearLayout 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=".MainActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_gravity="center" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="爱好:"> </TextView> <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cb1" android:text="游泳"> </CheckBox> <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cb2" android:text="旅游"> </CheckBox> <CheckBox android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/cb3" android:text="爬山"> </CheckBox> </LinearLayout> </LinearLayout>
标签:checkbox,日报,AlertDialog,软件工程,学了,使用 From: https://www.cnblogs.com/jiacheng-712/p/17169774.html