单选框

2024-01-22 17:23 更新

单选框,提供相应的用户交互选择项。

说明

该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。

子组件

接口

Radio(options: {value: string, group: string})

从API version 9开始,该接口支持在ArkTS卡片中使用。

参数:

参数名

参数类型

必填

参数描述

value

string

当前单选框的值。

group

string

当前单选框的所属群组名称,相同group的Radio只能有一个被选中。

属性

除支持通用属性外,还支持以下属性:

名称

参数类型

描述

checked

boolean

设置单选框的选中状态。

默认值:false

从API version 9开始,该接口支持在ArkTS卡片中使用。

事件

除支持通用事件外,还支持以下事件:

名称

功能描述

onChange(callback: (isChecked: boolean) => void)

单选框选中状态改变时触发回调。

- isChecked为true时,表示从未选中变为选中。

- isChecked为false时,表示从选中变为未选中。

从API version 9开始,该接口支持在ArkTS卡片中使用。

示例

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct RadioExample {
  5. build() {
  6. Flex({ direction: FlexDirection.Row, justifyContent: FlexAlign.Center, alignItems: ItemAlign.Center }) {
  7. Column() {
  8. Text('Radio1')
  9. Radio({ value: 'Radio1', group: 'radioGroup' }).checked(true)
  10. .height(50)
  11. .width(50)
  12. .onChange((isChecked: boolean) => {
  13. console.log('Radio1 status is ' + isChecked)
  14. })
  15. }
  16. Column() {
  17. Text('Radio2')
  18. Radio({ value: 'Radio2', group: 'radioGroup' }).checked(false)
  19. .height(50)
  20. .width(50)
  21. .onChange((isChecked: boolean) => {
  22. console.log('Radio2 status is ' + isChecked)
  23. })
  24. }
  25. Column() {
  26. Text('Radio3')
  27. Radio({ value: 'Radio3', group: 'radioGroup' }).checked(false)
  28. .height(50)
  29. .width(50)
  30. .onChange((isChecked: boolean) => {
  31. console.log('Radio3 status is ' + isChecked)
  32. })
  33. }
  34. }.padding({ top: 30 })
  35. }
  36. }

以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号