当前位置:   article > 正文

[Android]RadioButton控件_android radiobutton

android radiobutton

 RadioButton控件


RadioButton控件是单选按钮控件,它继承自Button控件,可以直接使用Button控件支持的各种属性和方法。

与普通按钮不同的是,RadioButton控件多了一个可以选中的功能,能额外指定一个android:checked属性,该属性可以指定初始状态是否被选中。其实也可以不用指定,默认初始状态都不被选中。

RadioButton控件必须和单选框RedioGroup控件一起使用。

 RadioButton控件的使用


  1. <RadioGroup
  2. android:id="@+id/radiogroup"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:orientation="horizontal">
  6. <RadioButton
  7. android:id="@+id/one"
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:text="一年级"
  11. android:checked="true"
  12. />
  13. <RadioButton
  14. android:id="@+id/two"
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:text="二年级"
  18. />
  19. <RadioButton
  20. android:id="@+id/three"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="三年级"
  24. />
  25. </RadioGroup>

  RadioButton控件的选中监听器


  1. //为RadioGroup设置一个事件监听器
  2. val radioGroup:RadioGroup=findViewById(R.id.radiogroup)
  3. radioGroup.setOnCheckedChangeListener { group, checkedId ->
  4. val check:RadioButton=findViewById(checkedId)
  5. Toast.makeText(this,"${check.text}",Toast.LENGTH_SHORT).show()
  6. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/675853
推荐阅读
相关标签
  

闽ICP备14008679号