焦点事件

2024-02-07 12:49 更新

基本概念

  • 焦点

    指向当前应用界面上唯一的一个可交互元素,当用户使用键盘、电视遥控器、车机摇杆/旋钮等非指向性输入设备与应用程序进行间接交互时,基于焦点的导航和交互是重要的输入手段。

  • 默认焦点

    应用打开或切换页面后,若当前页上存在可获焦的组件,则树形结构的组件树中第一个可获焦的组件默认获得焦点。可以使用自定义默认焦点进行自定义指定。

  • 获焦

    指组件获得了焦点,同一时刻,应用中最多只有1个末端组件是获焦的,且此时它的所有祖宗组件(整个组件链)均是获焦的。当期望某个组件获焦,须确保该组件及其所有的祖宗节点均是可获焦的(focusable属性为true)。

  • 失焦

    指组件从获焦状态变成了非获焦状态,失去了焦点。组件失焦时,它的所有祖宗组件(失焦组件链)与新的获焦组件链不相同的节点都会失焦。

  • 走焦

    表示焦点在当前应用中转移的过程,走焦会带来原焦点组件的失焦和新焦点组件的获焦。应用中焦点发生变化的方式按行为可分为两类:

    • 主动走焦:指开发者/用户主观的行为导致焦点移动,包含:外接键盘上按下TAB/方向键、使用requestFocus主动给指定组件申请焦点、组件focusOnTouch属性为true后点击组件。
    • 被动走焦:指组件焦点因其他操作被动的转移焦点,此特性为焦点系统默认行为,无法由开发者自由设定,例如当使用if-else语句将处于获焦的组件删除/将处于获焦的组件(或其父组件)置成不可获焦时、当页面切换时。
  • 焦点态

    获焦组件的样式,不同组件的焦点态样式大同小异,默认情况下焦点态不显示,仅使用外接键盘按下TAB键/方向键时才会触发焦点态样式出现。首次触发焦点态显示的TAB键/方向键不会触发走焦。当应用接收到点击事件时(包括手指触屏的按下事件和鼠标左键的按下事件),自动隐藏焦点态样式。焦点态样式由后端组件定义,开发者无法修改。

走焦规则

走焦规则是指用户使用“TAB键/SHIFT+TAB键/方向键”主动进行走焦,或焦点系统在执行被动走焦时的顺序规则。组件的走焦规则默认由走焦系统定义,由焦点所在的容器决定。

  • 线性走焦:常见的容器有Flex、Row、Column、List,这些都是典型的单方向容器,组件在这些容器内的排列都是线性的,那么走焦规则也是线性的。走焦的方向和方向键的方向一致。
    图1 线性走焦示意图

    例如Row容器,使用方向键左右(←/→)即可将焦点在相邻的2个可获焦组件之间来回切换。

  • 十字走焦:使用方向键上(↑)下(↓)左(←)右(→)可以使焦点在相邻的组件上切换。典型的是Grid容器,如下图:
    图2 Grid组件十字走焦示意图
    说明
    • TAB/SHIFT+TAB键在以上两种走焦规则上的功能和方向键一致。TAB键等同于“先执行方向键右,若无法走焦,再执行方向键下”,SHIFT+TAB键等同于“先执行方向键左,若无法走焦,再执行方向键上”。
    • 触发走焦的按键是按下的事件(DOWN事件)。
    • 删除组件、设置组件无法获焦后,会使用线性走焦规则,自动先往被删除/Unfocusable组件的前置兄弟组件上走焦,无法走焦的话,再往后置兄弟组件上走焦。
  • tabIndex走焦:给组件设置tabIndex通用属性,自定义组件的TAB键/SHIFT+TAB键的走焦顺序。
  • 区域走焦:给容器组件设置tabIndex通用属性,再结合groupDefaultFocus通用属性,自定义容器区域的TAB键/SHIFT+TAB键的走焦顺序和默认获焦组件。
  • 走焦至容器组件规则:当焦点走焦到容器(该容器没有配置groupDefaultFocus)上时,若该容器组件为首次获焦,则会先计算目标容器组件的子组件的区域位置,得到距离目标容器中心点最近的子组件,焦点会走到目标容器上的该子组件上。若该容器非首次获焦,焦点会自动走焦到上一次目标容器中获焦的子组件。
  • 焦点交互:当某组件获焦时,该组件的固有点击任务或开发者绑定的onClick回调任务,会自动挂载到空格/回车按键上,当按下按键时,任务就和手指/鼠标点击一样被执行。
说明

本文涉及到的焦点均为组件焦点,另外一个焦点的概念是:窗口焦点,指向当前获焦的窗口。当窗口失焦时,该窗口应用中的所有获焦组件全部失焦。

监听组件的焦点变化

  1. onFocus(event: () => void)

获焦事件回调,绑定该API的组件获焦时,回调响应。

  1. onBlur(event:() => void)

失焦事件回调,绑定该API的组件失焦时,回调响应。

onFocus和onBlur两个接口通常成对使用,来监听组件的焦点变化。

以下示例代码展示获焦/失焦回调的使用方法:

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct FocusEventExample {
  5. @State oneButtonColor: Color = Color.Gray;
  6. @State twoButtonColor: Color = Color.Gray;
  7. @State threeButtonColor: Color = Color.Gray;
  8. build() {
  9. Column({ space: 20 }) {
  10. // 通过外接键盘的上下键可以让焦点在三个按钮间移动,按钮获焦时颜色变化,失焦时变回原背景色
  11. Button('First Button')
  12. .width(260)
  13. .height(70)
  14. .backgroundColor(this.oneButtonColor)
  15. .fontColor(Color.Black)
  16. // 监听第一个组件的获焦事件,获焦后改变颜色
  17. .onFocus(() => {
  18. this.oneButtonColor = Color.Green;
  19. })
  20. // 监听第一个组件的失焦事件,失焦后改变颜色
  21. .onBlur(() => {
  22. this.oneButtonColor = Color.Gray;
  23. })
  24. Button('Second Button')
  25. .width(260)
  26. .height(70)
  27. .backgroundColor(this.twoButtonColor)
  28. .fontColor(Color.Black)
  29. // 监听第二个组件的获焦事件,获焦后改变颜色
  30. .onFocus(() => {
  31. this.twoButtonColor = Color.Green;
  32. })
  33. // 监听第二个组件的失焦事件,失焦后改变颜色
  34. .onBlur(() => {
  35. this.twoButtonColor = Color.Grey;
  36. })
  37. Button('Third Button')
  38. .width(260)
  39. .height(70)
  40. .backgroundColor(this.threeButtonColor)
  41. .fontColor(Color.Black)
  42. // 监听第三个组件的获焦事件,获焦后改变颜色
  43. .onFocus(() => {
  44. this.threeButtonColor = Color.Green;
  45. })
  46. // 监听第三个组件的失焦事件,失焦后改变颜色
  47. .onBlur(() => {
  48. this.threeButtonColor = Color.Gray ;
  49. })
  50. }.width('100%').margin({ top: 20 })
  51. }
  52. }

上述示例包含以下4步:

  1. 应用打开时,“First Button”默认获取焦点,onFocus回调响应,背景色变成绿色。
  2. 按下TAB键(或方向键下↓),“First Button”显示焦点态样式:组件外围有一个蓝色的闭合框。不触发走焦,焦点仍然在“First Button”上。
  3. 按下TAB键(或方向键下↓),触发走焦,“Second Button”获焦,onFocus回调响应,背景色变成绿色;“First Button”失焦、onBlur回调响应,背景色变回灰色。
  4. 按下TAB键(或方向键下↓),触发走焦,“Third Button”获焦,onFocus回调响应,背景色变成绿色;“Second Button”失焦、onBlur回调响应,背景色变回灰色。

设置组件是否获焦

通过focusable接口设置组件是否可获焦:

  1. focusable(value: boolean)

按照组件的获焦能力可大致分为三类:

  • 默认可获焦的组件,通常是有交互行为的组件,例如Button、Checkbox,TextInput组件,此类组件无需设置任何属性,默认即可获焦。
  • 有获焦能力,但默认不可获焦的组件,典型的是Text、Image组件,此类组件缺省情况下无法获焦,若需要使其获焦,可使用通用属性focusable(true)使能。
  • 无获焦能力的组件,通常是无任何交互行为的展示类组件,例如Blank、Circle组件,此类组件即使使用focusable属性也无法使其可获焦。
说明
  • focusable为false表示组件不可获焦,同样可以使组件变成不可获焦的还有通用属性enabled
  • 当某组件处于获焦状态时,将其的focusable属性或enabled属性设置为false,会自动使该组件失焦,然后焦点按照走焦规则将焦点转移给其他组件。
表1 基础组件获焦能力

基础组件

是否有获焦能力

focusable默认值

走焦规则

AlphabetIndexer

true

线性走焦

Blank

false

/

Button

true

/

Checkbox

true

/

CheckboxGroup

true

/

DataPanel

false

/

DatePicker

true

线性走焦

Divider

false

/

Gauge

false

/

Image

false

/

ImageAnimator

false

/

LoadingProgress

false

/

Marquee

false

/

Menu

true

线性走焦

MenuItem

true

/

MenuItemGroup

true

线性走焦

Navigation

false

组件自定义

NavRouter

false

跟随子容器

NavDestination

false

线性走焦

PatternLock

false

/

Progress

false

/

QRCode

false

/

Radio

true

/

Rating

true

/

RichText

false

/

ScrollBar

false

/

Search

true

/

Select

true

线性走焦

Slider

true

/

Span

false

/

Stepper

true

/

StepperItem

true

/

Text

false

/

TextArea

true

/

TextClock

false

/

TextInput

true

/

TextPicker

true

线性走焦

TextTimer

false

/

TimePicker

true

线性走焦

Toggle

true

/

Web

true

Web组件自定义

XComponent

false

/

表2 容器组件获焦能力

容器组件

是否可获焦

focusable默认值

走焦规则

Badge

false

/

Column

true

线性走焦

ColumnSplit

true

/

Counter

true

线性走焦

Flex

true

线性走焦

GridCol

true

容器组件自定义

GridRow

true

容器组件自定义

Grid

true

容器组件自定义

GridItem

true

跟随子组件

List

true

线性走焦

ListItem

true

跟随子组件

ListItemGroup

true

跟随List组件

Navigator

true

容器组件自定义

Panel

true

跟随子组件

Refresh

false

/

RelativeContainer

true

容器组件自定义

Row

true

线性走焦

RowSplit

true

/

Scroll

true

线性走焦

SideBarContainer

true

线性走焦

Stack

true

线性走焦

Swiper

true

容器组件自定义

Tabs

true

容器组件自定义

TabContent

true

跟随子组件

表3 媒体组件获焦能力

媒体组件

是否可获焦

focusable默认值

走焦规则

Video

true

/

表4 画布组件获焦能力

画布组件

是否可获焦

focusable默认值

走焦规则

Canvas

false

/

以下示例为大家展示focusable接口的使用方法:

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct FocusableExample {
  5. @State textFocusable: boolean = true;
  6. @State color1: Color = Color.Yellow;
  7. @State color2: Color = Color.Yellow;
  8. build() {
  9. Column({ space: 5 }) {
  10. Text('Default Text') // 第一个Text组件未设置focusable属性,默认不可获焦
  11. .borderColor(this.color1)
  12. .borderWidth(2)
  13. .width(300)
  14. .height(70)
  15. .onFocus(() => {
  16. this.color1 = Color.Blue;
  17. })
  18. .onBlur(() => {
  19. this.color1 = Color.Yellow;
  20. })
  21. Divider()
  22. Text('focusable: ' + this.textFocusable) // 第二个Text设置了focusable属性,初始值为true
  23. .borderColor(this.color2)
  24. .borderWidth(2)
  25. .width(300)
  26. .height(70)
  27. .focusable(this.textFocusable)
  28. .onFocus(() => {
  29. this.color2 = Color.Blue;
  30. })
  31. .onBlur(() => {
  32. this.color2 = Color.Yellow;
  33. })
  34. Divider()
  35. Row() {
  36. Button('Button1')
  37. .width(140).height(70)
  38. Button('Button2')
  39. .width(160).height(70)
  40. }
  41. Divider()
  42. Button('Button3')
  43. .width(300).height(70)
  44. Divider()
  45. }.width('100%').justifyContent(FlexAlign.Center)
  46. .onKeyEvent((e) => { // 绑定onKeyEvent,在该Column组件获焦时,按下'F'键,可将第二个Text的focusable置反
  47. if (e.keyCode === 2022 && e.type === KeyType.Down) {
  48. this.textFocusable = !this.textFocusable;
  49. }
  50. })
  51. }
  52. }

运行效果:

上述示例包含默认获焦和主动走焦两部分:

默认获焦:

  • 根据默认焦点的说明,该应用打开后,默认第一个可获焦元素获焦:
  • 第一个Text组件没有设置focusable(true)属性,该Text组件无法获焦。
  • 第二个Text组件的focusable属性显式设置为true,说明该组件可获焦,那么默认焦点将置到它身上。

主动走焦:

按键盘F键,触发onKeyEvent,focusable置为false,Text组件变成不可获焦,焦点自动转移,按照被动走焦中的说明项,焦点会自动从Text组件先向上寻找下一个可获焦组件,由于上一个组件是一个不可获焦的Text,所以向下寻找下一个可获焦的组件,找到并使焦点转移到Row容器上,根据走焦至容器规则,计算Button1和Button2的位置,Button2比Button1更大,因此焦点会自动转移到Button2上。

自定义默认焦点

  1. defaultFocus(value: boolean)

焦点系统在页面初次构建完成时,会搜索当前页下的所有组件,找到第一个绑定了defaultFocus(true)的组件,然后将该组件置为默认焦点,若无任何组件绑定defaultFocus(true),则将第一个找到的可获焦的组件置为默认焦点。

以如下应用为例,应用布局如下:

以下是实现该应用的示例代码,且示例代码中没有设置defaultFocus:

  1. // xxx.ets
  2. import promptAction from '@ohos.promptAction';
  3. class MyDataSource implements IDataSource {
  4. private list: number[] = [];
  5. private listener: DataChangeListener;
  6. constructor(list: number[]) {
  7. this.list = list;
  8. }
  9. totalCount(): number {
  10. return this.list.length;
  11. }
  12. getData(index: number): any {
  13. return this.list[index];
  14. }
  15. registerDataChangeListener(listener: DataChangeListener): void {
  16. this.listener = listener;
  17. }
  18. unregisterDataChangeListener() {
  19. }
  20. }
  21. @Entry
  22. @Component
  23. struct SwiperExample {
  24. private swiperController: SwiperController = new SwiperController()
  25. private data: MyDataSource = new MyDataSource([])
  26. aboutToAppear(): void {
  27. let list = []
  28. for (let i = 1; i <= 4; i++) {
  29. list.push(i.toString());
  30. }
  31. this.data = new MyDataSource(list);
  32. }
  33. build() {
  34. Column({ space: 5 }) {
  35. Swiper(this.swiperController) {
  36. LazyForEach(this.data, (item: string) => {
  37. Row({ space: 20 }) {
  38. Column() {
  39. Button('1').width(200).height(200)
  40. .fontSize(40)
  41. .backgroundColor('#dadbd9')
  42. }
  43. Column({ space: 20 }) {
  44. Row({ space: 20 }) {
  45. Button('2')
  46. .width(100)
  47. .height(100)
  48. .fontSize(40)
  49. .type(ButtonType.Normal)
  50. .borderRadius(20)
  51. .backgroundColor('#dadbd9')
  52. Button('3')
  53. .width(100)
  54. .height(100)
  55. .fontSize(40)
  56. .type(ButtonType.Normal)
  57. .borderRadius(20)
  58. .backgroundColor('#dadbd9')
  59. }
  60. Row({ space: 20 }) {
  61. Button('4')
  62. .width(100)
  63. .height(100)
  64. .fontSize(40)
  65. .type(ButtonType.Normal)
  66. .borderRadius(20)
  67. .backgroundColor('#dadbd9')
  68. Button('5')
  69. .width(100)
  70. .height(100)
  71. .fontSize(40)
  72. .type(ButtonType.Normal)
  73. .borderRadius(20)
  74. .backgroundColor('#dadbd9')
  75. }
  76. Row({ space: 20 }) {
  77. Button('6')
  78. .width(100)
  79. .height(100)
  80. .fontSize(40)
  81. .type(ButtonType.Normal)
  82. .borderRadius(20)
  83. .backgroundColor('#dadbd9')
  84. Button('7')
  85. .width(100)
  86. .height(100)
  87. .fontSize(40)
  88. .type(ButtonType.Normal)
  89. .borderRadius(20)
  90. .backgroundColor('#dadbd9')
  91. }
  92. }
  93. }
  94. .width(480)
  95. .height(380)
  96. .justifyContent(FlexAlign.Center)
  97. .borderWidth(2)
  98. .borderColor(Color.Gray)
  99. .backgroundColor(Color.White)
  100. }, item => item)
  101. }
  102. .cachedCount(2)
  103. .index(0)
  104. .interval(4000)
  105. .indicator(true)
  106. .loop(true)
  107. .duration(1000)
  108. .itemSpace(0)
  109. .curve(Curve.Linear)
  110. .onChange((index: number) => {
  111. console.info(index.toString());
  112. })
  113. .margin({ left: 20, top: 20, right: 20 })
  114. Row({ space: 40 }) {
  115. Button('←')
  116. .fontSize(40)
  117. .fontWeight(FontWeight.Bold)
  118. .fontColor(Color.Black)
  119. .backgroundColor(Color.Transparent)
  120. .onClick(() => {
  121. this.swiperController.showPrevious();
  122. })
  123. Button('→')
  124. .fontSize(40)
  125. .fontWeight(FontWeight.Bold)
  126. .fontColor(Color.Black)
  127. .backgroundColor(Color.Transparent)
  128. .onClick(() => {
  129. this.swiperController.showNext();
  130. })
  131. }
  132. .width(480)
  133. .height(50)
  134. .justifyContent(FlexAlign.Center)
  135. .borderWidth(2)
  136. .borderColor(Color.Gray)
  137. .backgroundColor('#f7f6dc')
  138. Row({ space: 40 }) {
  139. Button('Cancel')
  140. .fontSize(30)
  141. .fontColor('#787878')
  142. .type(ButtonType.Normal)
  143. .width(140)
  144. .height(50)
  145. .backgroundColor('#dadbd9')
  146. Button('OK')
  147. .fontSize(30)
  148. .fontColor('#787878')
  149. .type(ButtonType.Normal)
  150. .width(140)
  151. .height(50)
  152. .backgroundColor('#dadbd9')
  153. .onClick(() => {
  154. promptAction.showToast({ message: 'Button OK on clicked' });
  155. })
  156. }
  157. .width(480)
  158. .height(80)
  159. .justifyContent(FlexAlign.Center)
  160. .borderWidth(2)
  161. .borderColor(Color.Gray)
  162. .backgroundColor('#dff2e4')
  163. .margin({ left: 20, bottom: 20, right: 20 })
  164. }.backgroundColor('#f2f2f2')
  165. .margin({ left: 50, top: 50, right: 20 })
  166. }
  167. }

当前应用上无任何defaultFocus设置,所以第一个可获焦的组件默认获取焦点,按下TAB键/方向键让获焦的组件显示焦点态样式:

假设开发者想让应用打开的时候,无需执行多余的切换焦点操作,直接点击按键的空格/回车键,就可以执行Button-OK的onClick回调操作,那么就可以给这个Button绑定defaultFocus(true),让它成为该页面上的默认焦点:

  1. Button('OK')
  2. .defaultFocus(true) // 设置Button-OK为defaultFocus
  3. .fontSize(30)
  4. .fontColor('#787878')
  5. .type(ButtonType.Normal)
  6. .width(140).height(50).backgroundColor('#dadbd9')
  7. .onClick(() => {
  8. promptAction.showToast({ message: 'Button OK on clicked' });
  9. })

打开应用后按TAB键,Button-OK显示了焦点态,说明默认焦点变更到了Button-OK上。然后按下空格,响应了Button-OK的onClick事件。

自定义TAB键走焦顺序

  1. tabIndex(index: number)

tabIndex用于设置自定义TAB键走焦顺序,默认值为0。使用“TAB/Shift+TAB键”走焦时(方向键不影响),系统会自动获取到所有配置了tabIndex大于0的组件,然后按照递增/递减排序进行走焦。

defaultFocus提供的示例为例,默认情况下的走焦顺序如下:

默认的走焦顺序从第一个获焦组件一路走到最后一个获焦组件,会经历Button1->Button4->Button5->Button7->左箭头->右箭头->ButtonOK。这种走焦队列比较完整,遍历了大部分的组件。但缺点是从第一个走到最后一个所经历的路径较长。

如果想实现快速的从第一个走到最后一个,又不想牺牲太多的遍历完整性,就可以使用tabIndex通用属性。

比如:开发者把白色的区域当为一个整体,黄色的区域当为一个整体,绿色的区域当为一个整体,实现Button1->左箭头->ButtonOK这种队列的走焦顺序,只需要在Button1、左箭头、ButtonOK这三个组件上依次增加tabIndex(1)、tabIndex(2)、tabIndex(3)。tabIndex的参数表示TAB走焦的顺序(从大于0的数字开始,从小到大排列)。

  1. Button('1').width(200).height(200)
  2. .fontSize(40)
  3. .backgroundColor('#dadbd9')
  4. .tabIndex(1) // Button-1设置为第一个tabIndex节点
  1. Button('←')
  2. .fontSize(40)
  3. .fontWeight(FontWeight.Bold)
  4. .fontColor(Color.Black)
  5. .backgroundColor(Color.Transparent)
  6. .onClick(() => {
  7. this.swiperController.showPrevious();
  8. })
  9. .tabIndex(2) // Button-左箭头设置为第二个tabIndex节点
  1. Button('OK')
  2. .fontSize(30)
  3. .fontColor('#787878')
  4. .type(ButtonType.Normal)
  5. .width(140).height(50).backgroundColor('#dadbd9')
  6. .onClick(() => {
  7. promptAction.showToast({ message: 'Button OK on clicked' });
  8. })
  9. .tabIndex(3) // Button-OK设置为第三个tabIndex节点

说明
  • 当焦点处于tabIndex(大于0)节点上时,TAB/ShiftTAB会优先在tabIndex(大于0)的队列中寻找后置/前置的节点,存在则走焦至相应的tabIndex节点。若不存在,则使用默认的走焦逻辑继续往后/往前走焦。
  • 当焦点处于tabIndex(等于0)节点上时,TAB/ShiftTAB使用默认的走焦逻辑走焦,走焦的过程中会跳过tabIndex(大于0)和tabIndex(小于0)的节点。
  • 当焦点处于tabIndex(小于0)节点上时,TAB/ShiftTAB无法走焦。

groupDefaultFocus

  1. groupDefaultFocus(value: boolean)

自定义TAB键走焦顺序中所展示的使用tabIndex完成快速走焦的能力有如下问题:

每个区域(白色/黄色/绿色三个区域)都设置了某个组件为tabIndex节点(白色-Button1、黄色-左箭头、绿色-ButtonOK),但这样设置之后,只能在这3个组件上按TAB/ShiftTab键走焦时会有快速走焦的效果。

解决方案是给每个区域的容器设置tabIndex,但是这样设置的问题是:第一次走焦到容器上时,获焦的子组件是默认的第一个可获焦组件,并不是自己想要的组件(Button1、左箭头、ButtonOK)。

这样便引入了groupDefaultFocus通用属性,参数:boolean,默认值:false。

用法需和tabIndex组合使用,使用tabIndex给区域(容器)绑定走焦顺序,然后给Button1、左箭头、ButtonOK绑定groupDefaultFocus(true),这样在首次走焦到目标区域(容器)上时,它的绑定了groupDefaultFocus(true)的子组件同时获得焦点。

  1. // xxx.ets
  2. import promptAction from '@ohos.promptAction';
  3. class MyDataSource implements IDataSource {
  4. private list: number[] = [];
  5. private listener: DataChangeListener;
  6. constructor(list: number[]) {
  7. this.list = list;
  8. }
  9. totalCount(): number {
  10. return this.list.length;
  11. }
  12. getData(index: number): any {
  13. return this.list[index];
  14. }
  15. registerDataChangeListener(listener: DataChangeListener): void {
  16. this.listener = listener;
  17. }
  18. unregisterDataChangeListener() {
  19. }
  20. }
  21. @Entry
  22. @Component
  23. struct SwiperExample {
  24. private swiperController: SwiperController = new SwiperController()
  25. private data: MyDataSource = new MyDataSource([])
  26. aboutToAppear(): void {
  27. let list = []
  28. for (let i = 1; i <= 4; i++) {
  29. list.push(i.toString());
  30. }
  31. this.data = new MyDataSource(list);
  32. }
  33. build() {
  34. Column({ space: 5 }) {
  35. Swiper(this.swiperController) {
  36. LazyForEach(this.data, (item: string) => {
  37. Row({ space: 20 }) { // 设置该Row组件为tabIndex的第一个节点
  38. Column() {
  39. Button('1').width(200).height(200)
  40. .fontSize(40)
  41. .backgroundColor('#dadbd9')
  42. .groupDefaultFocus(true) // 设置Button-1为第一个tabIndex的默认焦点
  43. }
  44. Column({ space: 20 }) {
  45. Row({ space: 20 }) {
  46. Button('2')
  47. .width(100)
  48. .height(100)
  49. .fontSize(40)
  50. .type(ButtonType.Normal)
  51. .borderRadius(20)
  52. .backgroundColor('#dadbd9')
  53. Button('3')
  54. .width(100)
  55. .height(100)
  56. .fontSize(40)
  57. .type(ButtonType.Normal)
  58. .borderRadius(20)
  59. .backgroundColor('#dadbd9')
  60. }
  61. Row({ space: 20 }) {
  62. Button('4')
  63. .width(100)
  64. .height(100)
  65. .fontSize(40)
  66. .type(ButtonType.Normal)
  67. .borderRadius(20)
  68. .backgroundColor('#dadbd9')
  69. Button('5')
  70. .width(100)
  71. .height(100)
  72. .fontSize(40)
  73. .type(ButtonType.Normal)
  74. .borderRadius(20)
  75. .backgroundColor('#dadbd9')
  76. }
  77. Row({ space: 20 }) {
  78. Button('6')
  79. .width(100)
  80. .height(100)
  81. .fontSize(40)
  82. .type(ButtonType.Normal)
  83. .borderRadius(20)
  84. .backgroundColor('#dadbd9')
  85. Button('7')
  86. .width(100)
  87. .height(100)
  88. .fontSize(40)
  89. .type(ButtonType.Normal)
  90. .borderRadius(20)
  91. .backgroundColor('#dadbd9')
  92. }
  93. }
  94. }
  95. .width(480)
  96. .height(380)
  97. .justifyContent(FlexAlign.Center)
  98. .borderWidth(2)
  99. .borderColor(Color.Gray)
  100. .backgroundColor(Color.White)
  101. .tabIndex(1)
  102. }, item => item)
  103. }
  104. .cachedCount(2)
  105. .index(0)
  106. .interval(4000)
  107. .indicator(true)
  108. .loop(true)
  109. .duration(1000)
  110. .itemSpace(0)
  111. .curve(Curve.Linear)
  112. .onChange((index: number) => {
  113. console.info(index.toString());
  114. })
  115. .margin({ left: 20, top: 20, right: 20 })
  116. Row({ space: 40 }) { // 设置该Row组件为第二个tabIndex节点
  117. Button('←')
  118. .fontSize(40)
  119. .fontWeight(FontWeight.Bold)
  120. .fontColor(Color.Black)
  121. .backgroundColor(Color.Transparent)
  122. .onClick(() => {
  123. this.swiperController.showPrevious();
  124. })
  125. .groupDefaultFocus(true) // 设置Button-左箭头为第二个tabIndex节点的默认焦点
  126. Button('→')
  127. .fontSize(40)
  128. .fontWeight(FontWeight.Bold)
  129. .fontColor(Color.Black)
  130. .backgroundColor(Color.Transparent)
  131. .onClick(() => {
  132. this.swiperController.showNext();
  133. })
  134. }
  135. .width(480)
  136. .height(50)
  137. .justifyContent(FlexAlign.Center)
  138. .borderWidth(2)
  139. .borderColor(Color.Gray)
  140. .backgroundColor('#f7f6dc')
  141. .tabIndex(2)
  142. Row({ space: 40 }) { // 设置该Row组件为第三个tabIndex节点
  143. Button('Cancel')
  144. .fontSize(30)
  145. .fontColor('#787878')
  146. .type(ButtonType.Normal)
  147. .width(140)
  148. .height(50)
  149. .backgroundColor('#dadbd9')
  150. Button('OK')
  151. .fontSize(30)
  152. .fontColor('#787878')
  153. .type(ButtonType.Normal)
  154. .width(140)
  155. .height(50)
  156. .backgroundColor('#dadbd9')
  157. .defaultFocus(true)
  158. .onClick(() => {
  159. promptAction.showToast({ message: 'Button OK on clicked' });
  160. })
  161. .groupDefaultFocus(true) // 设置Button-OK为第三个tabIndex节点的默认焦点
  162. }
  163. .width(480)
  164. .height(80)
  165. .justifyContent(FlexAlign.Center)
  166. .borderWidth(2)
  167. .borderColor(Color.Gray)
  168. .backgroundColor('#dff2e4')
  169. .margin({ left: 20, bottom: 20, right: 20 })
  170. .tabIndex(3)
  171. }.backgroundColor('#f2f2f2')
  172. .margin({ left: 50, top: 50, right: 20 })
  173. }
  174. }

focusOnTouch

  1. focusOnTouch(value: boolean)

点击获焦能力,参数:boolean,默认值:false(输入类组件:TextInput、TextArea、Search、Web默认值是true)。

点击是指使用触屏或鼠标左键进行单击,默认为false的组件,例如Button,不绑定该API时,点击Button不会使其获焦,当给Button绑定focusOnTouch(true)时,点击Button会使Button立即获得焦点。

给容器绑定focusOnTouch(true)时,点击容器区域,会立即使容器的第一个可获焦组件获得焦点。

示例代码:

  1. // requestFocus.ets
  2. import promptAction from '@ohos.promptAction';
  3. @Entry
  4. @Component
  5. struct RequestFocusExample {
  6. @State idList: string[] = ['A', 'B', 'C', 'D', 'E', 'F', 'N']
  7. build() {
  8. Column({ space:20 }){
  9. Button("id: " + this.idList[0] + " focusOnTouch(true) + focusable(false)")
  10. .width(400).height(70).fontColor(Color.White).focusOnTouch(true)
  11. .focusable(false)
  12. Button("id: " + this.idList[1] + " default")
  13. .width(400).height(70).fontColor(Color.White)
  14. Button("id: " + this.idList[2] + " focusOnTouch(false)")
  15. .width(400).height(70).fontColor(Color.White).focusOnTouch(false)
  16. Button("id: " + this.idList[3] + " focusOnTouch(true)")
  17. .width(400).height(70).fontColor(Color.White).focusOnTouch(true)
  18. }.width('100%').margin({ top:20 })
  19. }
  20. }

效果:

解读:

Button-A虽然设置了focusOnTouch(true),但是同时也设置了focusable(false),该组件无法获焦,因此点击后也无法获焦;

Button-B不设置相关属性,点击后不会获焦;

Button-C设置了focusOnTouch(false),同Button-B,点击后也不会获焦;

Button-D设置了focusOnTouch(true),点击即可使其获焦;

说明

由于焦点态的阐述的特性,焦点态在屏幕接收点击事件后会立即清除。因此该示例代码在每次点击后,需要再次按下TAB键使焦点态再次显示,才可知道当前焦点所在的组件。

focusControl.requestFocus

  1. focusControl.requestFocus(id: string)

主动申请焦点能力的全局方法,参数:string,参数表示被申请组件的id(通用属性id设置的字符串)。

使用方法为:在任意执行语句中调用该API,指定目标组件的id为方法参数,当程序执行到该语句时,会立即给指定的目标组件申请焦点。

代码示例:

  1. // requestFocus.ets
  2. import promptAction from '@ohos.promptAction';
  3. @Entry
  4. @Component
  5. struct RequestFocusExample {
  6. @State idList: string[] = ['A', 'B', 'C', 'D', 'E', 'F', 'N']
  7. @State requestId: number = 0
  8. build() {
  9. Column({ space:20 }){
  10. Row({space: 5}) {
  11. Button("id: " + this.idList[0] + " focusable(false)")
  12. .width(200).height(70).fontColor(Color.White)
  13. .id(this.idList[0])
  14. .focusable(false)
  15. Button("id: " + this.idList[1])
  16. .width(200).height(70).fontColor(Color.White)
  17. .id(this.idList[1])
  18. }
  19. Row({space: 5}) {
  20. Button("id: " + this.idList[2])
  21. .width(200).height(70).fontColor(Color.White)
  22. .id(this.idList[2])
  23. Button("id: " + this.idList[3])
  24. .width(200).height(70).fontColor(Color.White)
  25. .id(this.idList[3])
  26. }
  27. Row({space: 5}) {
  28. Button("id: " + this.idList[4])
  29. .width(200).height(70).fontColor(Color.White)
  30. .id(this.idList[4])
  31. Button("id: " + this.idList[5])
  32. .width(200).height(70).fontColor(Color.White)
  33. .id(this.idList[5])
  34. }
  35. }.width('100%').margin({ top:20 })
  36. .onKeyEvent((e) => {
  37. if (e.keyCode >= 2017 && e.keyCode <= 2022) {
  38. this.requestId = e.keyCode - 2017;
  39. } else if (e.keyCode === 2030) {
  40. this.requestId = 6;
  41. } else {
  42. return;
  43. }
  44. if (e.type !== KeyType.Down) {
  45. return;
  46. }
  47. let res = focusControl.requestFocus(this.idList[this.requestId]);
  48. if (res) {
  49. promptAction.showToast({message: 'Request success'});
  50. } else {
  51. promptAction.showToast({message: 'Request failed'});
  52. }
  53. })
  54. }
  55. }

效果:

解读:页面中共6个Button组件,其中Button-A组件设置了focusable(false),表示其不可获焦,在外部容器的onKeyEvent中,监听按键事件,当按下A ~ F按键时,分别去申请Button A ~ F 的焦点,另外按下N键,是给当前页面上不存在的id的组件去申请焦点。

  1. 按下TAB键,由于第一个组件Button-A设置了无法获焦,那么默认第二个组件Button-B获焦,Button-B展示焦点态样式;
  2. 键盘上按下A键,申请Button-A的焦点,气泡显示Request failed,表示无法获取到焦点,焦点位置未改变;
  3. 键盘上按下B键,申请Button-B的焦点,气泡显示Request success,表示获焦到了焦点,焦点位置原本就在Button-B,位置未改变;
  4. 键盘上按下C键,申请Button-C的焦点,气泡显示Request success,表示获焦到了焦点,焦点位置从Button-B变更为Button-C;
  5. 键盘上按下D键,申请Button-D的焦点,气泡显示Request success,表示获焦到了焦点,焦点位置从Button-C变更为Button-D;
  6. 键盘上按下E键,申请Button-E的焦点,气泡显示Request success,表示获焦到了焦点,焦点位置从Button-D变更为Button-E;
  7. 键盘上按下F键,申请Button-F的焦点,气泡显示Request success,表示获焦到了焦点,焦点位置从Button-E变更为Button-F;
  8. 键盘上按下N键,申请未知组件的焦点,气泡显示Request failed,表示无法获取到焦点,焦点位置不变;
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号