当前位置:   article > 正文

鸿蒙Harmony应用开发—ArkTS声明式开发(基础组件:AlphabetIndexer)_鸿蒙 private arr: a[] = [] 添加值

鸿蒙 private arr: a[] = [] 添加值

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

说明:

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

子组件

接口

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

参数:

参数名参数类型必填参数描述
arrayValueArray<string>字母索引字符串数组,不可设置为空。
selectednumber初始选中项索引值,若超出索引值范围,则取默认值0。
从API version 10开始,该参数支持$$双向绑定变量。

属性

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

名称参数类型描述
colorResourceColor设置文字颜色。
默认值:0x99000000。
selectedColorResourceColor设置选中项文字颜色。
默认值:0xFF254FF7。
popupColorResourceColor设置提示弹窗文字颜色。
默认值:0xFF254FF7。
selectedBackgroundColorResourceColor设置选中项背景颜色。
默认值:0x1F0A59F7。
popupBackgroundResourceColor设置提示弹窗背景色。
默认值:0xFFFFFFFF。
usingPopupboolean设置是否使用提示弹窗。
默认值:false。
selectedFontFont设置选中项文字样式。
默认值:
{
size:'12.0fp',
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
}
popupFontFont设置提示弹窗字体样式。
默认值:
{
size:'24.0vp',
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
}
fontFont设置字母索引条默认字体样式。
默认值:
{
size:'12.0fp',
style:FontStyle.Normal,
weight:FontWeight.Normal,
family:'HarmonyOS Sans'
}
itemSizestring | number设置字母索引条字母区域大小,字母区域为正方形,即正方形边长。不支持设置为百分比。
默认值:16.0
单位:vp
alignStylevalue: IndexerAlign,
offset10+?: Length
value:设置字母索引条弹框的对齐样式,支持弹窗显示在索引条右侧和左侧。
默认值: IndexerAlign.Right。
offset:设置提示弹窗与索引条之间间距,大于等于0为有效值,在不设置或设置为小于0的情况下间距与popupPosition.x相同。与popupPosition同时设置时,水平方向上offset生效,竖直方向上popupPosition.y生效。
selected8+number设置选中项索引值。
默认值:0。
从API version 10开始,该参数支持$$双向绑定变量。
popupPosition8+Position设置弹出窗口相对于索引器条上边框中点的位置。
默认值:{x:60.0, y:48.0}。
popupSelectedColor10+ResourceColor设置提示弹窗非字母部分选中文字色。
默认值:#FF182431
popupUnselectedColor10+ResourceColor设置提示弹窗非字母部分未选中文字色。
默认值:#FF182431
popupItemFont10+Font设置提示弹窗非字母部分字体样式。
默认值:
{
size:24,
weight:FontWeight.Medium
}
popupItemBackgroundColor10+ResourceColor设置提示弹窗非字母部分背景色。
默认值:#FFFFFF
autoCollapse11+boolean设置是否使用自适应折叠模式。
默认值:false。
说明:
- 如果字符串首字符为“#”,除去首字符。
当剩余字符数 ≤≤ 9时,选择全显示模式。
当9 < 剩余字符数 ≤≤ 13时,根据索引条高度自适应选择全显示模式或者短折叠模式。
当剩余字符数 > 13时,根据索引条高度自适应选择短折叠模式或者长折叠模式。
- 如果字符串首字符不为“#”。
当所有字符数 ≤≤ 9时,选择全显示模式。
当9 < 所有字符数 ≤≤ 13时,根据索引条高度自适应选择全显示模式或者短折叠模式。
当所有字符数 > 13时,根据索引条高度自适应选择短折叠模式或者长折叠模式。

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

  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: string) => {
  18. ListItem() {
  19. Text(item)
  20. .width('80%')
  21. .height('5%')
  22. .fontSize(30)
  23. .textAlign(TextAlign.Center)
  24. }
  25. }, (item: string) => item)
  26. ForEach(this.arrayB, (item: string) => {
  27. ListItem() {
  28. Text(item)
  29. .width('80%')
  30. .height('5%')
  31. .fontSize(30)
  32. .textAlign(TextAlign.Center)
  33. }
  34. }, (item: string) => item)
  35. ForEach(this.arrayC, (item: string) => {
  36. ListItem() {
  37. Text(item)
  38. .width('80%')
  39. .height('5%')
  40. .fontSize(30)
  41. .textAlign(TextAlign.Center)
  42. }
  43. }, (item: string) => item)
  44. ForEach(this.arrayL, (item: string) => {
  45. ListItem() {
  46. Text(item)
  47. .width('80%')
  48. .height('5%')
  49. .fontSize(30)
  50. .textAlign(TextAlign.Center)
  51. }
  52. }, (item: string) => 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. .popupSelectedColor(0x00FF00)
  67. .popupUnselectedColor(0x0000FF)
  68. .popupItemFont({ size: 30, style: FontStyle.Normal })
  69. .popupItemBackgroundColor(0xCCCCCC)
  70. .onSelect((index: number) => {
  71. console.info(this.value[index] + ' Selected!')
  72. })
  73. .onRequestPopupData((index: number) => {
  74. if (this.value[index] == 'A') {
  75. return this.arrayA // 当选中A时,弹出框里面的提示文本列表显示A对应的列表arrayA,选中B、C、L时也同样
  76. } else if (this.value[index] == 'B') {
  77. return this.arrayB
  78. } else if (this.value[index] == 'C') {
  79. return this.arrayC
  80. } else if (this.value[index] == 'L') {
  81. return this.arrayL
  82. } else {
  83. return [] // 选中其余子母项时,提示文本列表为空
  84. }
  85. })
  86. .onPopupSelect((index: number) => {
  87. console.info('onPopupSelected:' + index)
  88. })
  89. }
  90. .width('100%')
  91. .height('100%')
  92. }
  93. }
  94. }

alphabet

示例2

  1. // xxx.ets
  2. @Entry
  3. @Component
  4. struct AlphabetIndexerSample {
  5. private arrayA: string[] = ['安']
  6. private arrayB: string[] = ['卜', '白', '包', '毕', '丙']
  7. private arrayC: string[] = ['曹', '成', '陈', '催']
  8. private arrayJ: 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. @State isNeedAutoCollapse: boolean = false;
  14. @State indexerHeight: string = '75%';
  15. build() {
  16. Stack({ alignContent: Alignment.Start }) {
  17. Row() {
  18. List({ space: 20, initialIndex: 0 }) {
  19. ForEach(this.arrayA, (item: string) => {
  20. ListItem() {
  21. Text(item)
  22. .width('80%')
  23. .height('5%')
  24. .fontSize(30)
  25. .textAlign(TextAlign.Center)
  26. }
  27. }, (item: string) => item)
  28. ForEach(this.arrayB, (item: string) => {
  29. ListItem() {
  30. Text(item)
  31. .width('80%')
  32. .height('5%')
  33. .fontSize(30)
  34. .textAlign(TextAlign.Center)
  35. }
  36. }, (item: string) => item)
  37. ForEach(this.arrayC, (item: string) => {
  38. ListItem() {
  39. Text(item)
  40. .width('80%')
  41. .height('5%')
  42. .fontSize(30)
  43. .textAlign(TextAlign.Center)
  44. }
  45. }, (item: string) => item)
  46. ForEach(this.arrayJ, (item: string) => {
  47. ListItem() {
  48. Text(item)
  49. .width('80%')
  50. .height('5%')
  51. .fontSize(30)
  52. .textAlign(TextAlign.Center)
  53. }
  54. }, (item: string) => item)
  55. }
  56. .width('50%')
  57. .height('100%')
  58. Column() {
  59. Column() {
  60. AlphabetIndexer({ arrayValue: this.value, selected: 0 })
  61. .autoCollapse(this.isNeedAutoCollapse)
  62. .height(this.indexerHeight)
  63. .selectedColor(0xFFFFFF)// 选中项文本颜色
  64. .popupColor(0xFFFAF0)// 弹出框文本颜色
  65. .selectedBackgroundColor(0xCCCCCC)// 选中项背景颜色
  66. .popupBackground(0xD2B48C)// 弹出框背景颜色
  67. .usingPopup(true)// 是否显示弹出框
  68. .selectedFont({ size: 16, weight: FontWeight.Bolder })// 选中项字体样式
  69. .popupFont({ size: 30, weight: FontWeight.Bolder })// 弹出框内容的字体样式
  70. .itemSize(28)// 每一项的尺寸大小
  71. .alignStyle(IndexerAlign.Right)// 弹出框在索引条右侧弹出
  72. .popupSelectedColor(0x00FF00)
  73. .popupUnselectedColor(0x0000FF)
  74. .popupItemFont({ size: 30, style: FontStyle.Normal })
  75. .popupItemBackgroundColor(0xCCCCCC)
  76. .onSelect((index: number) => {
  77. console.info(this.value[index] + ' Selected!');
  78. })
  79. .onRequestPopupData((index: number) => {
  80. if (this.value[index] == 'A') {
  81. return this.arrayA;
  82. } else if (this.value[index] == 'B') {
  83. return this.arrayB;
  84. } else if (this.value[index] == 'C') {
  85. return this.arrayC;
  86. } else if (this.value[index] == 'J') {
  87. return this.arrayJ;
  88. } else {
  89. return [];
  90. }
  91. })
  92. .onPopupSelect((index: number) => {
  93. console.info('onPopupSelected:' + index);
  94. })
  95. }
  96. .height('80%')
  97. .justifyContent(FlexAlign.Center)
  98. Column() {
  99. Button('切换成折叠模式')
  100. .margin('5vp')
  101. .onClick(() => {
  102. this.isNeedAutoCollapse = true;
  103. })
  104. Button('切换索引条高度到30%')
  105. .margin('5vp')
  106. .onClick(() => {
  107. this.indexerHeight = '30%';
  108. })
  109. Button('切换索引条高度到70%')
  110. .margin('5vp')
  111. .onClick(() => {
  112. this.indexerHeight = '70%';
  113. })
  114. }.height('20%')
  115. }
  116. .width('50%')
  117. .justifyContent(FlexAlign.Center)
  118. }
  119. .width('100%')
  120. .height('100%')
  121. }
  122. }
  123. }

alphabetIndexerAutoCollapseSample

最后,有很多小伙伴不知道学习哪些鸿蒙开发技术?不知道需要重点掌握哪些鸿蒙应用开发知识点?而且学习时频繁踩坑,最终浪费大量时间。所以有一份实用的鸿蒙(Harmony NEXT)资料用来跟着学习是非常有必要的。 

这份鸿蒙(Harmony NEXT)资料包含了鸿蒙开发必掌握的核心知识要点,内容包含了ArkTS、ArkUI开发组件、Stage模型、多端部署、分布式应用开发、音频、视频、WebGL、OpenHarmony多媒体技术、Napi组件、OpenHarmony内核、Harmony南向开发、鸿蒙项目实战等等)鸿蒙(Harmony NEXT)技术知识点。

希望这一份鸿蒙学习资料能够给大家带来帮助,有需要的小伙伴自行领取,限时开源,先到先得~无套路领取!!

 获取这份完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

鸿蒙(Harmony NEXT)最新学习路线

  •  HarmonOS基础技能

  • HarmonOS就业必备技能 
  •  HarmonOS多媒体技术

  • 鸿蒙NaPi组件进阶

  • HarmonOS高级技能

  • 初识HarmonOS内核 
  • 实战就业级设备开发

有了路线图,怎么能没有学习资料呢,小编也准备了一份联合鸿蒙官方发布笔记整理收纳的一套系统性的鸿蒙(OpenHarmony )学习手册(共计1236页)鸿蒙(OpenHarmony )开发入门教学视频,内容包含:ArkTS、ArkUI、Web开发、应用模型、资源分类…等知识点。

获取以上完整版高清学习路线,请点击→纯血版全套鸿蒙HarmonyOS学习资料

《鸿蒙 (OpenHarmony)开发入门教学视频》

《鸿蒙生态应用开发V2.0白皮书》

图片

《鸿蒙 (OpenHarmony)开发基础到实战手册》

OpenHarmony北向、南向开发环境搭建

图片

 《鸿蒙开发基础》

  • ArkTS语言
  • 安装DevEco Studio
  • 运用你的第一个ArkTS应用
  • ArkUI声明式UI开发
  • .……

图片

 《鸿蒙开发进阶》

  • Stage模型入门
  • 网络管理
  • 数据管理
  • 电话服务
  • 分布式应用开发
  • 通知与窗口管理
  • 多媒体技术
  • 安全技能
  • 任务管理
  • WebGL
  • 国际化开发
  • 应用测试
  • DFX面向未来设计
  • 鸿蒙系统移植和裁剪定制
  • ……

图片

《鸿蒙进阶实战》

  • ArkTS实践
  • UIAbility应用
  • 网络案例
  • ……

图片

 获取以上完整鸿蒙HarmonyOS学习资料,请点击→纯血版全套鸿蒙HarmonyOS学习资料

总结

总的来说,华为鸿蒙不再兼容安卓,对中年程序员来说是一个挑战,也是一个机会。只有积极应对变化,不断学习和提升自己,他们才能在这个变革的时代中立于不败之地。 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Monodyee/article/detail/314182
推荐阅读
相关标签
  

闽ICP备14008679号