<?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">
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="按钮1"
android:onClick="click1"/>
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="按钮2"/>
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="按钮3"/>
</LinearLayout>
![]()
<?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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="你的学历是什么?"
android:textColor="#0A0A0A"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="初中"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="高中"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="专科"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="本科"/>
</LinearLayout>
![]()
<?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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="你学过哪些课程"
android:textColor="#000000"/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="JAVA"/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="IOS"/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ANDROID"/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="HTML"/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="JSP"/>
</LinearLayout>
![]()