📜  android radiobutton setchecked (1)

📅  最后修改于: 2023-12-03 14:39:08.200000             🧑  作者: Mango

Android - RadioButton setChecked方法介绍

RadioButton是Android中的一种单选按钮,通常用于在一组互斥的选项中选择一个选项。setChecked方法是RadioButton类的一个方法,用于设置该按钮是否被选中。本文将介绍RadioButton类中setChecked方法的用法。

语法
public void setChecked(boolean checked)

参数说明:

  • checked:指定该RadioButton是否被选中。如果为true,RadioButton将被选中;如果为false,RadioButton将不被选中。
返回值

setChecked方法没有返回值。

示例

以下示例演示了如何使用setChecked方法设置RadioButton的选中状态:

RadioButton radioButton = findViewById(R.id.radioButton);

// 将RadioButton设置为选中状态
radioButton.setChecked(true);

// 将RadioButton设置为不选中状态
radioButton.setChecked(false);
注意事项
  • RadioButton应该放置在RadioGroup中,以便它们能够正确地表现为单选按钮。
  • 如果需要在代码中根据某些条件检查或设置RadioButton的选中状态,可以使用setChecked方法。

以上就是RadioButton中setChecked方法的介绍,希望对你有所帮助!