RadioButton是一个单选框控件
Checkbox是一个复选框控件
在JAVA代码中为它们添加监听器时,方法都叫做setOnCheckedChangeListener,因为它们只有选中(Checked)与否两种状态,而不是button空间的按压(Click)与否


MainActivity的XML文件

<?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"
    tools:context=".MainActivity"
    android:orientation="vertical">

    <Button
        android:id="@+id/RadioButton"
        android:layout_width="match_parent"
        android:layout_height="80dp"
        android:text="RadioButton"/>
    <!--控件closed有两种方式,一种可以在内部再加控件-->

</LinearLayout>

再建立一个Activity文件,命名为Radioactivity,其XML文件如下

<?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"
    tools:context=".RadioActivity"
    android:orientation="vertical">
    <TextView
        android:text="that man"
        android:textSize="25sp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"/>
    <RadioGroup
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <RadioButton
            android:id="@+id/radio1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="123"
            android:textSize="20sp"
            android:checked="true"/>
        <!--checked表示默认选中-->
        <RadioButton
            android:id="@+id/radio2"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="BlackGlasses"
            android:textSize="20sp"
            android:scrollbarSize="30sp"/>
        <RadioButton
            android:id="@+id/radio3"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="葛底斯堡演说"
            android:textSize="20sp"
            android:scrollbarSize="30sp"/>
    </RadioGroup>

    <TextView
        android:layout_marginTop="100dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="修改后"
        android:gravity="center"
        android:textSize="30dp"/>
    <TextView
        android:text="that man"
        android:textSize="25sp"
        android:layout_width="match_parent"
        andro手机上id:layout_height="wrap_content"
        android:gravity="center"/>
    <RadioGroup
        android:id="@+id/group"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <RadioButton
            android:id="@+id/radio4"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="123"
            android:gravity="center"
            andrnoid:background="@drawable/stroke"
            android:textSize="20sp"
            android:checked="true"
            android:button="@null"/>
        <!--checked表示默认选中-->
        <RadioButton
            android:id="@+id/radio5"
            android:button="@null"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@drawable/stroke"
            android:text="BlackGlasses"
     a       android:gravity="center"
            android:textSize="20sp"
            android:scrollbarSize="30sp"/>
        <RadioButton
            android:id="@+id/radio6"
            android:layout_width="match_parent"
            android:button="@null"
            android:layout_height="wrap_content"
            android:background="@drawable/stroke"
            android:text="葛底斯堡演说"
            android:gravity="center"
            android:textSize="20sp"
         h   android:scrollbarSize="30sp"/>
    </RadioGroup>
    <CheckBox
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:text="千反田"/>
    <CheckBox
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:text="小鸟游"/>
    <CheckBox
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:text="五更"/>
</LinearLayout>

MainActivity的JAVA代码,完成了Activity的跳转

package com.example.myapplication;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity {

    private Button mBtnRadioButton;   //在onCreate之前就声明了空的Button,在对Activity初始化后才绑定。也可以在onCreate中声明,但是不能加private
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstancieState);
        setContentView(R.layout.activity_main);
        mBtnRadioButton = findViewById(R.id.RadioButton);
        mBtnRadioButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                Intent intent = new Intent(MainActivity.this, RadioActivity.class);
                startActivity(intent);  //还有个startActivities()方法....半天没看出来错误
            }
        });
    }

RadioActivity的JAVA文件

package co'jm.example.myapplication;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;

public class RadioActivity extends AppCompatActivity {
    RadioGroup mBtnRadioButton;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_radio);
        mBtnRadioButton = findViewById(R.id.group);
        mBtnRadioButton.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {    //区别于button的Clicked,它是Checked
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                RadioButton radioButton = group.findViewById(checkedId);  //Group是一个整体,要根据传入的checkedID找出到底是哪个RadioButton选中了
                Toast.makeText(RadioActivity.this, radioButton.getText(), Toast.LENGTH_LONG).show();
            }
        });
    }
}

在手机上运行,Radioactivity的效果如下,下方的黑框是一个Toast控件,可以在这个页面的JAVA代码中找到
RadioButton、CheckBox与checked事件_控件