1、项目需求
- 本项目是一个安卓项目,启动页面有一个RadioGroup和一个TextView
- 有两个单选按钮,分别显示男、女
- 性别默认选择是男;TextView的文字为:“你选择的性别是:男”
- 性别选择为男时,TextView的文字更新为:“你选择的性别是:男”
- 性别选择为女时,TextView的文字更新为:“你选择的性别是:女”
2、项目分析
- RadioGroup的默认选择
(1)判断默认选择的是哪项,显示TextView
- RadioGroup的点击监听
(1)RadioGroup需要设置监听器,监听器的作用是更新TextView
3、布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom=