字幕排序定位

2024-01-22 16:58 更新

可以与容器组件联动用于按逻辑结构快速定位容器显示区域的组件。

说明

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

子组件

接口

AlphabetIndexer(value: {arrayValue: Array<string>, selected: number})

参数:

参数名

参数类型

必填

参数描述

arrayValue

Array<string>

字母索引字符串数组,不可设置为空。

selected

number

初始选中项索引值,若超出索引值范围,则取默认值0。

属性

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

名称

参数类型

描述

color

ResourceColor

设置文字颜色。

默认值:0x99000000。

selectedColor

ResourceColor

设置选中项文字颜色。

默认值:0xFF254FF7。

popupColor

ResourceColor

设置提示弹窗文字颜色。

默认值:0xFF254FF7。

selectedBackgroundColor

ResourceColor

设置选中项背景颜色。

默认值:0x1F0A59F7。

popupBackground

ResourceColor

设置提示弹窗背景色。

默认值:0xFFFFFFFF。

usingPopup

boolean

设置是否使用提示弹窗。

默认值:false。

selectedFont

Font

设置选中项文字样式。

默认值:

{

size:'12.0fp',

style:FontStyle.Normal,

weight:FontWeight.Normal,

family:'HarmonyOS Sans'

}

popupFont

Font

设置提示弹窗字体样式。

默认值:

{

size:'24.0vp',

style:FontStyle.Normal,

weight:FontWeight.Normal,

family:'HarmonyOS Sans'

}

font

Font

设置字母索引条默认字体样式。

默认值:

{

size:'12.0fp',

style:FontStyle.Normal,

weight:FontWeight.Normal,

family:'HarmonyOS Sans'

}

itemSize

string | number

设置字母索引条字母区域大小,字母区域为正方形,即正方形边长。不支持设置为百分比。

默认值:24.0

单位:vp

alignStyle

IndexerAlign

设置字母索引条弹框的对齐样式,支持弹窗显示在索引条右侧和左侧。

默认值:IndexerAlign.Right。

selected

number

设置选中项索引值。

默认值:0。

popupPosition

Position

设置弹出窗口相对于索引器条上边框中点的位置。

默认值:{x:60.0, y:48.0}。

IndexerAlign枚举说明

名称

描述

Left

弹框显示在索引条右侧。

Right

弹框显示在索引条左侧。

事件

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

名称

功能描述

onSelected(callback: (index: number) => void)(deprecated)

索引条选中回调,返回值为当前选中索引。 从API Version 8开始废弃,建议使用onSelect代替。

onSelect(callback: (index: number) => void)8+

索引条选中回调,返回值为当前选中索引。

onRequestPopupData(callback: (index: number) => Array<string>)8+

选中字母索引后,请求索引提示弹窗显示内容回调。

返回值:索引对应的字符串数组,此字符串数组在弹窗中竖排显示,字符串列表最多显示5个,超出部分可以滑动显示。

onPopupSelect(callback: (index: number) => void)8+

字母索引提示弹窗字符串列表选中回调。

示例

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct AlphabetIndexerSample {
  5. private arrayA: string[] = ['安']
  6. private arrayB: string[] = ['卜', '白', '包', '毕', '丙']
  7. private arrayC: string[] = ['曹', '成', '陈', '催']
  8. private arrayL: string[] = ['刘', '李', '楼', '梁', '雷', '吕', '柳', '卢']
  9. private value: string[] = ['#', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
  10. 'H', 'I', 'J', 'K', 'L', 'M', 'N',
  11. 'O', 'P', 'Q', 'R', 'S', 'T', 'U',
  12. 'V', 'W', 'X', 'Y', 'Z']
  13. build() {
  14. Stack({ alignContent: Alignment.Start }) {
  15. Row() {
  16. List({ space: 20, initialIndex: 0 }) {
  17. ForEach(this.arrayA, (item) => {
  18. ListItem() {
  19. Text(item)
  20. .width('80%')
  21. .height('5%')
  22. .fontSize(30)
  23. .textAlign(TextAlign.Center)
  24. }.editable(true)
  25. }, item => item)
  26. ForEach(this.arrayB, (item) => {
  27. ListItem() {
  28. Text(item)
  29. .width('80%')
  30. .height('5%')
  31. .fontSize(30)
  32. .textAlign(TextAlign.Center)
  33. }.editable(true)
  34. }, item => item)
  35. ForEach(this.arrayC, (item) => {
  36. ListItem() {
  37. Text(item)
  38. .width('80%')
  39. .height('5%')
  40. .fontSize(30)
  41. .textAlign(TextAlign.Center)
  42. }.editable(true)
  43. }, item => item)
  44. ForEach(this.arrayL, (item) => {
  45. ListItem() {
  46. Text(item)
  47. .width('80%')
  48. .height('5%')
  49. .fontSize(30)
  50. .textAlign(TextAlign.Center)
  51. }.editable(true)
  52. }, item => item)
  53. }
  54. .width('50%')
  55. .height('100%')
  56. AlphabetIndexer({ arrayValue: this.value, selected: 0 })
  57. .selectedColor(0xFFFFFF) // 选中项文本颜色
  58. .popupColor(0xFFFAF0) // 弹出框文本颜色
  59. .selectedBackgroundColor(0xCCCCCC) // 选中项背景颜色
  60. .popupBackground(0xD2B48C) // 弹出框背景颜色
  61. .usingPopup(true) // 是否显示弹出框
  62. .selectedFont({ size: 16, weight: FontWeight.Bolder }) // 选中项字体样式
  63. .popupFont({ size: 30, weight: FontWeight.Bolder }) // 弹出框内容的字体样式
  64. .itemSize(28) // 每一项的尺寸大小
  65. .alignStyle(IndexerAlign.Left) // 弹出框在索引条右侧弹出
  66. .onSelect((index: number) => {
  67. console.info(this.value[index] + ' Selected!')
  68. })
  69. .onRequestPopupData((index: number) => {
  70. if (this.value[index] == 'A') {
  71. return this.arrayA // 当选中A时,弹出框里面的提示文本列表显示A对应的列表arrayA,选中B、C、L时也同样
  72. } else if (this.value[index] == 'B') {
  73. return this.arrayB
  74. } else if (this.value[index] == 'C') {
  75. return this.arrayC
  76. } else if (this.value[index] == 'L') {
  77. return this.arrayL
  78. } else {
  79. return [] // 选中其余子母项时,提示文本列表为空
  80. }
  81. })
  82. .onPopupSelect((index: number) => {
  83. console.info('onPopupSelected:' + index)
  84. })
  85. }
  86. .width('100%')
  87. .height('100%')
  88. }
  89. }
  90. }

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

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号