ts-basic-components-radio.md 2.2 KB
Newer Older
Y
yaoyuchi 已提交
1 2
# Radio

H
geshi  
HelloCrease 已提交
3
>  **说明:**
Y
yaoyuchi 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
> 该组件从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。


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


## 权限列表




## 子组件




## 接口

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

- 参数
  | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 | 
  | -------- | -------- | -------- | -------- | -------- |
  | value | string | 是 | - | 当前单选框的值。|
  | group | string | 是 | - | 当前单选框的所属群组名称,相同group的Radio只能有一个被选中。|


## 属性

| 名称 | 参数类型 | 默认值 | 描述 | 
| -------- | -------- | -------- | -------- |
| checked | boolean | false | 设置单选框的选中状态。 | 


## 事件

| 名称 | 功能描述 | 
| -------- | -------- |
K
kangchongtao 已提交
42
| onChange(callback: (isChecked: boolean) => void) | 单选框选中状态改变时触发回调。<br> -isChecked为true时,代表选中。<br> -isChecked为false时,代表未选中。 |
Y
yaoyuchi 已提交
43 44 45 46


## 示例

H
geshi  
HelloCrease 已提交
47 48
```ts
// xxx.ets
Y
yaoyuchi 已提交
49 50 51 52 53 54 55 56 57 58
@Entry
@Component
struct RadioExample {
  build() {
    Flex({ direction: FlexDirection.Row, justifyContent: FlexAlign.Center, alignItems: ItemAlign.Center }) {
      Column() {
        Text('Radio1')
        Radio({ value: 'Radio1', group: 'radioGroup' }).checked(true)
          .height(50)
          .width(50)
K
kangchongtao 已提交
59 60
          .onChange((isChecked: boolean) => {
            console.log('Radio1 status is ' + isChecked)
Y
yaoyuchi 已提交
61 62 63 64 65 66 67
          })
      }
      Column() {
        Text('Radio2')
        Radio({ value: 'Radio2', group: 'radioGroup' }).checked(false)
          .height(50)
          .width(50)
K
kangchongtao 已提交
68 69
          .onChange((isChecked: boolean) => {
            console.log('Radio2 status is ' + isChecked)
Y
yaoyuchi 已提交
70 71 72 73 74 75 76
          })
      }
      Column() {
        Text('Radio3')
        Radio({ value: 'Radio3', group: 'radioGroup' }).checked(false)
          .height(50)
          .width(50)
K
kangchongtao 已提交
77 78
          .onChange((isChecked: boolean) => {
            console.log('Radio3 status is ' + isChecked)
Y
yaoyuchi 已提交
79 80 81 82 83 84 85
          })
      }
    }.padding({ top: 30 })
  }
}
```
![](figures/radio.gif)