codecamp

单选框

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

说明

该组件从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,免费阅读超1000+编程语言教程
取消
确定
目录

媒体组件

像素

枚举

类型

接口

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }