布局文件activity_main.xml
1 <TextView 2 android:id="@+id/instruction" 3 android:layout_width="wrap_content" 4 android:layout_height="wrap_content" 5 android:layout_below="@id/temperature" 6 android:text="特殊情况(可多选,如有其他需报告的情况请说明)" 7 android:textSize="16sp" 8 android:layout_marginTop="10dp"/> 9 10 <CheckBox 11 android:id="@+id/instruction1" 12 android:layout_width="match_parent" 13 android:layout_height="wrap_content" 14 android:layout_below="@id/instruction" 15 android:text="无" 16 android:background="#FDDEDE" 17 android:textSize="16sp" 18 android:layout_marginTop="10dp"/> 19 20 <CheckBox 21 android:id="@+id/instruction2" 22 android:layout_width="wrap_content" 23 android:layout_height="wrap_content" 24 android:layout_below="@id/instruction1" 25 android:text="2020年12月17日至今去过或者现在居住在中高风险地区" 26 android:background="#FDDEDE" 27 android:textSize="16sp" 28 android:layout_marginTop="10dp"/> 29 30 <CheckBox 31 android:id="@+id/instruction3" 32 android:layout_width="match_parent" 33 android:layout_height="wrap_content" 34 android:layout_below="@id/instruction2" 35 android:text="本人或家人正在集中隔离" 36 android:background="#FDDEDE" 37 android:textSize="16sp" 38 android:layout_marginTop="10dp"/> 39 40 <CheckBox 41 android:id="@+id/instruction4" 42 android:layout_width="match_parent" 43 android:layout_height="wrap_content" 44 android:layout_below="@id/instruction3" 45 android:text="今日居住地异动" 46 android:background="#FDDEDE" 47 android:textSize="16sp" 48 android:layout_marginTop="10dp"/> 49 50 <CheckBox 51 android:id="@+id/instruction5" 52 android:layout_width="match_parent" 53 android:layout_height="wrap_content" 54 android:layout_below="@id/instruction4" 55 android:text="其他情况" 56 android:background="#FDDEDE" 57 android:textSize="16sp" 58 android:layout_marginTop="10dp"/>