# AlphabetIndexer 可以与容器组件联动用于按逻辑结构快速定位容器显示区域的组件。 > **说明:** > 该组件从API Version 7开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 ## 权限列表 无 ## 子组件 无 ## 接口 AlphabetIndexer(value: {arrayValue : Array<string>, selected : number}) - 参数 | 参数名 | 参数类型 | 必填 | 默认值 | 参数描述 | | -------- | -------- | -------- | -------- | -------- | | arrayValue | Array<string> | 是 | - | 字母索引字符串数组。 | | selected | number | 是 | - | 选中项编号。 | ## 属性 | 名称 | 参数类型 | 描述 | | -------- | -------- | -------- | | selectedColor | Color | 选中文本文字颜色。 | | popupColor | Color | 弹出提示文本字体颜色。 | | selectedBackgroundColor | Color | 选中文本背景颜色。 | | popupBackground | Color | 弹窗索引背景色。 | | usingPopup | boolean | 是否使用弹出索引提示。 | | selectedFont | {
size?: number,
weight?: FontWeight,
family?: string,
style?: FontStyle
} | 选中文本文字样式。 | | popupFont | {
size?: number,
weight?: FontWeight,
family?: string,
style?: FontStyle
} | 弹出提示文本字体样式。 | | font | {
size?: number,
weight?: FontWeight,
family?: string,
style?: FontStyle
} | 字母索引条默认文本字体样式。 | | itemSize | Length | 字母索引条字母区域大小,字母区域为正方形,设置正方形边长。 | | alignStyle | IndexerAlign | 字母索引条对齐样式,支持左侧对齐样式与右侧对齐样式,影响弹窗弹出位置。 | - IndexerAlign枚举说明 | 名称 | 描述 | | -------- | -------- | | Left | 弹框显示在索引条右侧。 | | Right | 弹框显示在索引条左侧。 | ## 事件 | 名称 | 功能描述 | | -------- | -------- | | onSelected(index: number) => void(deprecated) | 索引条选中回调。 | | onSelect(index: number) => void8+ | 索引条选中回调。 | | onRequestPopupData(callback: (index: number) => Array<string>)8+ | 选中字母索引后,请求索引提示窗口显示内容回调。
返回值:索引对应的字符串数组,此字符串数组在弹出窗口中竖排显示,字符串列表最多显示5个,超出部分可以滑动显示。 | | onPopupSelect(callback: (index: number) => void)8+ | 字母索引提示窗口选中回调。 | ## 示例 ```ts // xxx.ets @Entry @Component struct AlphabetIndexerSample { private value: string[] = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'] build() { AlphabetIndexer({ arrayValue: this.value, selected: 0 }) .selectedColor(0xffffff) // 选中颜色 .popupColor(0xFFFAF0) // 弹出框颜色 .selectedBackgroundColor(0xCCCCCC) // 选中背景颜色 .popupBackground(0xD2B48C) // 弹出框背景颜色 .usingPopup(true) // 是否显示弹出框 .selectedFont({ size: 16, weight: FontWeight.Bolder }) // 选中的样式 .popupFont({ size: 30, weight: FontWeight.Bolder }) // 弹出框的演示 .itemSize(28) // 每一项的大小正方形 .alignStyle(IndexerAlign.Left) // 左对齐 .onSelect((index: number) => { console.info(this.value[index] + '被选中了') // 选中的事件 }) .margin({ left: 50 }) } } ``` ![zh-cn_image_0000001174422922](figures/zh-cn_image_0000001174422922.gif)