# Search 搜索框组件,适用于浏览器的搜索内容输入框等应用场景。 > **说明:** > > 该组件从API version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。 > > 该组件仅支持单文本样式,若需实现富文本样式,建议使用[RichEditor](ts-basic-components-richeditor.md)组件。 ## 子组件 无 ## 接口 Search(options?: SearchOptions) **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ----------- | ------------- | ---- | ------------- | | options | [SearchOptions](#searchoptions18对象说明)| 否 | 搜索框组件初始化选项 | ## SearchOptions18+对象说明 Search初始化参数。 > **说明:** > > 为规范匿名对象的定义,API 18版本修改了此处的元素定义。其中,保留了历史匿名对象的起始版本信息,会出现外层元素@since版本号高于内层元素版本号的情况,但这不影响接口的使用。 **原子化服务API:** 从API version 18开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 类型 | 只读 | 可选 | 说明 | | ----------- | ------------- | ---- | ---- | ------------- | | value8+ | [ResourceStr](ts-types.md#resourcestr) | 否 | 是 | 设置当前显示的搜索文本内容。
从API version 10开始,该参数支持[$$](../../../ui/state-management/arkts-two-way-sync.md)双向绑定变量。
从API version 18开始,该参数支持[!!](../../../ui/state-management/arkts-new-binding.md#系统组件参数双向绑定)双向绑定变量。
**原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。
从API version 20开始,支持Resource类型。| | placeholder8+ | [ResourceStr](ts-types.md#resourcestr) | 否 | 是 | 设置无输入时的提示文本。
**原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 | | icon8+ | string | 否 | 是 | 设置搜索图标路径,默认使用系统搜索图标。
**说明:**
icon的数据源支持本地图片和网络图片。
- 支持的图片格式包括png、jpg、bmp、svg、gif、pixelmap和heif。
- 支持Base64字符串。格式data:image/[png\|jpeg\|bmp\|webp\|heif];base64,[base64 data], 其中[base64 data]为Base64字符串数据。
如果与属性searchIcon同时设置,则searchIcon优先。
**原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 | | controller8+ | [SearchController](#searchcontroller) | 否 | 是 | 设置Search组件控制器。
**原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 | ## 属性 除支持[通用属性](ts-component-general-attributes.md)外,还支持以下属性: ### searchButton searchButton(value: ResourceStr, option?: SearchButtonOptions) 设置搜索框末尾搜索按钮。 点击搜索按钮,同时触发onSubmit与onClick回调。 Wearable设备上默认字体大小为18fp。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ----------------------------------------------------- | ---- | ---------------------------- | | value | [ResourceStr](ts-types.md#resourcestr) | 是 | 搜索框末尾搜索按钮文本内容。
从API version 20开始,支持Resource类型。| | option | [SearchButtonOptions](#searchbuttonoptions10对象说明) | 否 | 配置搜索框文本样式。
默认值:
{
fontSize: '16fp',
fontColor: '#ff3f97e9'
} | ### placeholderColor placeholderColor(value: ResourceColor) 设置placeholder文本颜色,Wearable设备上默认值为'#99ffffff'。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------ | ---- | ------------------------------------------------ | | value | [ResourceColor](ts-types.md#resourcecolor) | 是 | placeholder文本颜色。
默认值:'#99182431'。 | ### placeholderFont placeholderFont(value?: Font) 设置placeholder文本样式,包括字体大小,字体粗细,字体族,字体风格。当前支持'HarmonyOS Sans'字体和注册自定义字体[loadFontSync](../../apis-arkgraphics2d/js-apis-graphics-text.md#loadfontsync)。 Wearable设备上默认字体大小为18fp。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------ | ---- | --------------------- | | value | [Font](ts-types.md#font) | 否 | placeholder文本样式。 | ### textFont textFont(value?: Font) 设置搜索框内输入文本样式,包括字体大小,字体粗细,字体族,字体风格。目前仅支持默认字体族。 Wearable设备上默认字体大小为18fp。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------ | ---- | ---------------------- | | value | [Font](ts-types.md#font) | 否 | 搜索框内输入文本样式。 | ### textAlign9+ textAlign(value: TextAlign) 设置文本在搜索框中的对齐方式。目前支持的对齐方式有:Start、Center、End。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------- | ---- | ------------------------------------------------------ | | value | [TextAlign](ts-appendix-enums.md#textalign) | 是 | 文本在搜索框中的对齐方式。
默认值:TextAlign.Start | > **说明:** > > textAlign只能调整文本整体的布局,不影响字符的显示顺序。若需要调整字符的显示顺序,请参考[镜像状态字符对齐](../../../ui/arkts-internationalization.md#镜像状态字符对齐)。 ### copyOption9+ copyOption(value: CopyOptions) 设置输入的文本是否可复制。设置CopyOptions.None时,当前Search中的文字无法被复制、剪切、翻译、分享、搜索和帮写,支持粘贴和全选。 设置CopyOptions.None时,不允许拖拽。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------ | ---- | ------------------------------------------------------------ | | value | [CopyOptions](ts-appendix-enums.md#copyoptions9) | 是 | 输入的文本是否可复制。
默认值:CopyOptions.LocalDevice,支持设备内复制。 | ### searchIcon10+ searchIcon(value: IconOptions | SymbolGlyphModifier) 设置左侧搜索图标样式。 Wearable设备上默认图标大小为16vp。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------- | ---- | ------------------ | | value | [IconOptions](#iconoptions10对象说明) \| [SymbolGlyphModifier](ts-universal-attributes-text-style.md#symbolglyphmodifier12) | 是 | 左侧搜索图标样式。
浅色模式默认值:
{
size: '16vp',
color: '#99182431',
src: ' '
}
深色模式默认值:
{
size: '16vp',
color: '#99ffffff',
src: ' '
} | ### cancelButton10+ cancelButton(value: CancelButtonOptions | CancelButtonSymbolOptions) 设置右侧清除按钮样式。 Wearable设备上默认图标大小为18fp。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | value | [CancelButtonOptions](#cancelbuttonoptions12对象说明) \| [CancelButtonSymbolOptions](#cancelbuttonsymboloptions12对象说明) | 是 | 右侧清除按钮样式。
默认值:
{
style: CancelButtonStyle.INPUT,
icon: {
size: '16vp',
color: '#99ffffff',
src: ' '
}
}
当style为CancelButtonStyle.CONSTANT时,默认显示清除样式。 | ### fontColor10+ fontColor(value: ResourceColor) 设置输入文本的字体颜色。fontSize、fontStyle、fontWeight和fontFamily在[textFont](#textfont)属性中设置。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------ | ---- | ----------------------------------------------- | | value | [ResourceColor](ts-types.md#resourcecolor) | 是 | 输入文本的字体颜色。
默认值:'#FF182431'
Wearable设备上默认值为:'#dbffffff' | ### caretStyle10+ caretStyle(value: CaretStyle) 设置光标样式。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ----------------------------------- | ---- | ------------------------------------------------------------ | | value | [CaretStyle](ts-text-common.md#caretstyle10) | 是 | 光标样式。
默认值:
{
width: '2.0vp',
color: '#007DFF'
} | > **说明:** > 从API version 12开始,此接口支持设置文本手柄颜色,光标和文本手柄颜色保持一致。 ### enableKeyboardOnFocus10+ enableKeyboardOnFocus(value: boolean) 设置Search通过点击以外的方式获焦时,是否主动拉起软键盘。 从API version 10开始,获焦默认绑定输入法。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------- | ---- | ----------------------------------------------- | | value | boolean | 是 | Search获焦时,是否主动拉起软键盘。
true表示主动拉起,false表示不主动拉起。
默认值:true | ### selectionMenuHidden10+ selectionMenuHidden(value: boolean) 设置是否不弹出系统文本选择菜单。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------- | ---- | ------------------------------------------------------------ | | value | boolean | 是 | 是否不弹出系统文本选择菜单。
设置为true时,单击输入框光标、长按输入框、双击输入框、三击输入框或者右键输入框,不弹出系统文本选择菜单。
设置为false时,弹出系统文本选择菜单。
默认值:false | ### customKeyboard10+ customKeyboard(value: CustomBuilder, options?: KeyboardOptions) 设置自定义键盘。 当设置自定义键盘时,输入框激活后不会打开系统输入法,而是加载指定的自定义组件。 自定义键盘的高度可以通过自定义组件根节点的height属性设置,宽度不可设置,使用系统默认值。 自定义键盘采用覆盖原始界面的方式呈现,当没有开启避让模式或者输入框不需要避让的场景不会对应用原始界面产生压缩或者上提。 自定义键盘无法获取焦点,但是会拦截手势事件。 默认在输入控件失去焦点时,关闭自定义键盘,开发者也可以通过[stopEditing](#stopediting10)方法控制键盘关闭。 如果设备支持拍摄输入,设置自定义键盘后,该输入框会不支持拍摄输入。 当设置自定义键盘时,可以通过绑定[onKeyPrelme](ts-universal-events-key.md#onkeypreime12)事件规避物理键盘的输入。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | --------------------- | ------------------------------------------- | ---- | -------------------------------- | | value | [CustomBuilder](ts-types.md#custombuilder8) | 是 | 自定义键盘。 | | options12+ | [KeyboardOptions](ts-basic-components-richeditor.md#keyboardoptions12) | 否 | 设置自定义键盘是否支持避让功能。 | ### type11+ type(value: SearchType) 设置输入框类型。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ----------------------------------- | ---- | -------------------------- | | value | [SearchType](#searchtype11枚举说明) | 是 | 输入框类型。
默认值:SearchType.Normal | ### maxLength11+ maxLength(value: number) 设置文本的最大输入字符数。默认不设置最大输入字符数限制。到达文本最大字符限制,将无法继续输入字符。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ----------------------------------- | ---- | ---------------------- | | value | number | 是 | 文本的最大输入字符数。 | ### enterKeyType12+ enterKeyType(value: EnterKeyType) 设置输入法回车键类型。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------ | ---- | -------------------------------------------------- | | value | [EnterKeyType](ts-basic-components-textinput.md#enterkeytype枚举说明) | 是 | 输入法回车键类型。
默认值:EnterKeyType.Search | ### lineHeight12+ lineHeight(value: number | string | Resource) 设置文本的文本行高,设置值不大于0时,不限制文本行高,自适应字体大小,number类型时单位为fp。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ---------------- | | value | number \| string \| [Resource](ts-types.md#resource) | 是 | 文本的文本行高。 | > **说明:** > > 特殊字符字体高度远超出同行的其他字符高度时,文本框出现截断、遮挡、内容相对位置发生变化等不符合预期的显示异常,需要开发者调整组件高度、行高等属性,修改对应的页面布局。 ### decoration12+ decoration(value: TextDecorationOptions) 设置文本装饰线类型样式及其颜色。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------------------------------------------------ | | value | [TextDecorationOptions](ts-universal-attributes-text-style.md#textdecorationoptions12对象说明) | 是 | 文本装饰线对象。
默认值:{
 type: TextDecorationType.None,
 color: Color.Black,
 style: TextDecorationStyle.SOLID 
} | ### letterSpacing12+ letterSpacing(value: number | string | Resource) 设置文本字符间距。设置该值为百分比时,按默认值显示。设置该值为0时,按默认值显示。string类型支持number类型取值的字符串形式,可以附带单位,例如"10"、"10fp"。 当取值为负值时,文字会发生压缩,负值过小时会将组件内容区大小压缩为0,导致无内容显示。 对每个字符生效,包括行尾字符。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | -------------------------- | ---- | -------------- | | value | number \| string \| [Resource](ts-types.md#resource) | 是 | 文本字符间距。
单位:[fp](ts-pixel-units.md) | ### fontFeature12+ fontFeature(value: string) 设置文字特性效果,比如数字等宽的特性。 格式为:normal \| \ \的格式为:\ \[ \ \| on \| off ] \的个数可以有多个,中间用','隔开。 例如,使用等宽数字的输入格式为:"ss01" on。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | -------------- | | value | string | 是 | 文字特性效果。 | Font Feature当前支持的属性见 [fontFeature属性列表](ts-basic-components-text.md#fontfeature12)。 设置 Font Feature 属性,Font Feature 是 OpenType 字体的高级排版能力,如支持连字、数字等宽等特性,一般用在自定义字体中,其能力需要字体本身支持。 更多 Font Feature 能力介绍可参考 https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop 和 https://sparanoid.com/lab/opentype-features/ ### selectedBackgroundColor12+ selectedBackgroundColor(value: ResourceColor) 设置文本选中底板颜色。如果未设置不透明度,默认为20%不透明度。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------ | ---- | ------------------------------------------ | | value | [ResourceColor](ts-types.md#resourcecolor) | 是 | 文本选中底板颜色。 | ### inputFilter12+ inputFilter(value: ResourceStr, error?:  Callback< string >) 通过正则表达式设置输入过滤器。匹配表达式的输入允许显示,不匹配的输入将被过滤。 单字符输入场景仅支持单字符匹配,多字符输入场景支持字符串匹配,例如粘贴。 设置inputFilter且输入的字符不为空字符,会导致设置输入框类型(即type接口)附带的文本过滤效果失效。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | -------------------------------------- | ---- | ---------------------------------- | | value | [ResourceStr](ts-types.md#resourcestr) | 是 | 正则表达式。 | | error |  Callback< string > | 否 | 正则匹配失败时,返回被过滤的内容。 | ### textIndent12+ textIndent(value: Dimension) 设置首行文本缩进。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ----------------------------------- | ---- | ---------------------------- | | value | [Dimension](ts-types.md#dimension10)| 是 | 首行文本缩进。
默认值:0 | ### minFontSize12+ minFontSize(value: number | string | Resource) 设置文本最小显示字号。string类型支持number类型取值的字符串形式,可以附带单位,例如"10"、"10fp"。 需配合[maxFontSize](#maxfontsize12)以及布局大小限制使用,单独设置不生效。 自适应字号生效时,fontSize设置不生效。 minFontSize小于或等于0时,自适应字号不生效,此时按照[textFont](#textfont)属性里面size的取值生效,未设置时按照其默认值生效。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | value | number \| string \| [Resource](ts-types.md#resource) | 是 | 文本最小显示字号。
单位:[fp](ts-pixel-units.md) | ### maxFontSize12+ maxFontSize(value: number | string | Resource) 设置文本最大显示字号。string类型支持number类型取值的字符串形式,可以附带单位,例如"10"、"10fp"。 需配合[minFontSize](#minfontsize12)以及布局大小限制使用,单独设置不生效。 自适应字号生效时,fontSize设置不生效。 maxFontSize小于等于0或者maxFontSize小于minFontSize时,自适应字号不生效,此时按照[textFont](#textfont)属性里面size的取值生效,未设置时按照其默认值生效。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | value | number \| string \| [Resource](ts-types.md#resource) | 是 | 文本最大显示字号。
单位:[fp](ts-pixel-units.md) | ### halfLeading18+ halfLeading(halfLeading: Optional\) 设置文本是否将行间距平分至行的顶部与底部。 **原子化服务API:** 从API version 18开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | --------------------------------------------- | ---- | --------------------------------------------- | | halfLeading | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\ | 是 | 文本是否将行间距平分至行的顶部与底部。
true表示将行间距平分至行的顶部与底部,false则不平分。
默认值:false | ### minFontScale18+ minFontScale(scale: Optional\) 设置文本最小的字体缩放倍数。 **原子化服务API:** 从API version 18开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | --------------------------------------------- | ---- | --------------------------------------------- | | scale | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\ | 是 | 文本最小的字体缩放倍数,支持undefined类型。
取值范围:[0, 1]
**说明:**
设置的值小于0时,按值为0处理。设置的值大于1,按值为1处理。异常值默认不生效。
使用前需在工程中配置configuration.json文件和app.json5文件,具体详见[示例19设置最小字体范围与最大字体范围](#示例19设置最小字体范围与最大字体范围)。 | ### maxFontScale18+ maxFontScale(scale: Optional\) 设置文本最大的字体缩放倍数。 **原子化服务API:** 从API version 18开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | --------------------------------------------- | ---- | --------------------------------------------- | | scale | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\ | 是 | 文本最大的字体缩放倍数,支持undefined类型。
取值范围:[1, +∞)
**说明:**
设置的值小于1时,按值为1处理。异常值默认不生效。
设置maxFontScale属性后,search组件内容最多放大到2倍。
使用前需在工程中配置configuration.json文件和app.json5文件,具体详见[示例19设置最小字体范围与最大字体范围](#示例19设置最小字体范围与最大字体范围)。 | ### editMenuOptions12+ editMenuOptions(editMenu: EditMenuOptions) 设置自定义菜单扩展项,允许用户设置扩展项的文本内容、图标、回调方法。 调用[disableMenuItems](../arkts-apis-uicontext-textmenucontroller.md#disablemenuitems20)或[disableSystemServiceMenuItems](../arkts-apis-uicontext-textmenucontroller.md#disablesystemservicemenuitems20)接口屏蔽文本选择菜单内的系统服务菜单项时,editMenuOptions接口内回调方法[onCreateMenu](./ts-text-common.md#oncreatemenu12)的入参列表中不包含被屏蔽的菜单选项。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | --------------------------------------------- | ---- | --------------------------------------------- | | editMenu | [EditMenuOptions](ts-text-common.md#editmenuoptions) | 是 | 扩展菜单选项。 | ### enablePreviewText12+ enablePreviewText(enable: boolean) 设置是否开启输入预上屏。 预上屏内容定义为文字暂存态,目前不支持文字拦截功能,因此不触发[onWillInsert](#onwillinsert12)、[onDidInsert](#ondidinsert12)、[onWillDelete](#onwilldelete12)、[onDidDelete](#ondiddelete12)回调。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------- | ---- | ---------------------------------- | | enable | boolean | 是 | 是否开启输入预上屏。
true表示开启输入预上屏,false表示不开启输入预上屏。
默认值:true | > **说明:** > > “预上屏”描述的是一种文字暂存状态。需要在输入法中开启预上屏功能,在输入文本过程中,未确认输入候选词时,文本框中显示标记文本。例如,通过拼音输入中文时,未确定候选词之前,在输入框中显示拼音字母,该状态称为文字预上屏。 ### enableHapticFeedback13+ enableHapticFeedback(isEnabled: boolean) 设置是否开启触控反馈。 **原子化服务API:** 从API version 13开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------- | ---- | ---------------------------------- | | isEnabled | boolean | 是 | 是否开启触控反馈。
true表示开启触控反馈,false表示不开启触控反馈。
默认值:true | > **说明:** > > 开启触控反馈时,需要在工程的module.json5中配置requestPermissions字段以开启振动权限,配置如下: > ```json > "requestPermissions": [ > { > "name": "ohos.permission.VIBRATE", > } > ] > ``` ### autoCapitalizationMode20+ autoCapitalizationMode(mode: AutoCapitalizationMode) 设置自动大小写模式的文本模式,只提供接口能力,具体实现以输入法应用为主。 **原子化服务API:** 从API version 20开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | -------- | ----------------------------------------- | ---- | -------------------------- | | mode | [AutoCapitalizationMode](ts-text-common.md#autocapitalizationmode20枚举说明) | 是 | 自动大小写模式,默认状态无效。 | ### keyboardAppearance15+ keyboardAppearance(appearance: Optional\) 设置输入框拉起的键盘样式。 **原子化服务API:** 从API version 15开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ----------------------------------------- | ---- | ------------------------------------------------------ | | appearance | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\<[KeyboardAppearance](ts-text-common.md#keyboardappearance15枚举说明)> | 是 | 键盘样式。
默认值:KeyboardAppearance.NONE_IMMERSIVE | ### strokeWidth20+ strokeWidth(width: Optional\) 设置文本描边的宽度。 **原子化服务API:** 从API version 20开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ---------------- | | width | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\<[LengthMetrics](../js-apis-arkui-graphics.md#lengthmetrics12)> | 是 | 文本描边的宽度。当LengthMetrics的单位为px时,
若设置值小于0,显示实心字;若大于0,显示空心字。
默认值为0,不做描边处理。 | ### strokeColor20+ strokeColor(color: Optional\) 设置文本描边的颜色。 **原子化服务API:** 从API version 20开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------ | ---- | ---------- | | color | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\<[ResourceColor](ts-types.md#resourcecolor)> | 是 | 描边颜色。默认值为字体颜色,设置异常值时取默认值。| ### stopBackPress15+ stopBackPress(isStopped: Optional\) 设置是否阻止返回键向其它组件或应用侧传递。 **原子化服务API:** 从API version 15开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------- | ---- | ---------------------------------- | | isStopped | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\ | 是 | 是否阻止返回键。
true表示阻止返回键向其它组件或应用侧传递,false表示不阻止。
默认值:true | ### enableAutoSpacing20+ enableAutoSpacing(enabled: Optional\) 设置是否开启中文与西文的自动间距。 **原子化服务API:** 从API version 20开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------- | ---- | ---------------------------------- | | enabled | [Optional](ts-universal-attributes-custom-property.md#optionalt12)\ | 是 | 是否开启中文与西文的自动间距。
true为开启自动间距,false为不开启。
默认值:false | ## IconOptions10+对象说明 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 类型 | 只读 | 可选 | 说明 | | ------ | ------------------------------------------ | ---- | ---- | ----------- | | size | [Length](ts-types.md#length) | 否 | 是 | 图标尺寸,不支持百分比。 | | color | [ResourceColor](ts-types.md#resourcecolor) | 否 | 是 | 图标颜色。 | | src | [ResourceStr](ts-types.md#resourcestr) | 否 | 是 | 图标/图片源。 | ## SearchButtonOptions10+对象说明 **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 类型 | 只读 | 可选 | 说明 | | --------- | ------------------------------------------ | ---- | ---- | ---------------- | | fontSize | [Length](ts-types.md#length) | 否 | 是 | 文本按钮字体大小,不支持百分比。**原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 | | fontColor | [ResourceColor](ts-types.md#resourcecolor) | 否 | 是 | 文本按钮字体颜色。**原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 | | autoDisable18+ | Boolean | 否 | 是 | Search无文本内容时按钮置灰且不可点击。
默认值:false
true表示开启按钮置灰功能,false表示不开启。
**原子化服务API:** 从API version 18开始,该接口支持在原子化服务中使用。| ## CancelButtonStyle10+枚举说明 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 说明 | | ----------------------- | ---------------- | | CONSTANT | 清除按钮常显样式。 | | INVISIBLE | 清除按钮常隐样式。 | | INPUT | 清除按钮输入样式。 | ## SearchType11+枚举说明 **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 值 | 说明 | | ------------------ | ------ | ------------- | | NORMAL | 0 | 基本输入模式。
支持输入数字、字母、下划线、空格、特殊字符。
**原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 | | NUMBER | 2 | 纯数字输入模式。
**原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 | | PHONE_NUMBER | 3 | 电话号码输入模式。
支持输入数字、空格、+ 、-、*、#、(、),长度不限。
**原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 | | EMAIL | 5 | 邮箱地址输入模式。
支持数字,字母,下划线、小数点、!、#、$、%、&、'、*、+、-、/、=、?、^、`、\{、\|、\}、~,以及@字符(只能存在一个@字符)。
**原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 | | NUMBER_DECIMAL12+ | 12 | 带小数点的数字输入模式。
支持数字,小数点(只能存在一个小数点)。
**原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 | | URL12+ | 13 | 带URL的输入模式。
**原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 | | ONE_TIME_CODE20+ | 14 | 验证码输入模式。
**原子化服务API:** 从API version 20开始,该接口支持在原子化服务中使用。 | ## CancelButtonOptions12+对象说明 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 类型 | 只读 | 可选 | 说明 | | --------- | ------------------------------------------ | ---- | ---- | ---------------- | | style | [CancelButtonStyle](#cancelbuttonstyle10枚举说明) | 否 | 是 | 右侧清除按钮显示状态。 | | icon | [IconOptions](#iconoptions10对象说明) | 否 | 是 | 右侧清除按钮图标。 | ## CancelButtonSymbolOptions12+对象说明 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full | 名称 | 类型 | 只读 | 可选 | 说明 | | --------- | ------------------------------------------ | ---- | ---- | ---------------- | | style | [CancelButtonStyle](#cancelbuttonstyle10枚举说明) | 否 | 是 | 右侧清除按钮显示状态。 | | icon | [SymbolGlyphModifier](ts-universal-attributes-text-style.md#symbolglyphmodifier12) | 否 | 是 | 右侧清除按钮Symbol图标。 | ## 事件 除支持[通用事件](ts-component-general-events.md)外,还支持以下事件: ### onSubmit onSubmit(callback: Callback\) 点击搜索图标、搜索按钮或者按下软键盘搜索按钮时触发该回调。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | ---------------------------- | | callback | Callback\ | 是 | 搜索提交回调,其返回值为当前搜索框中输入的文本内容。 | ### onSubmit14+ onSubmit(callback: SearchSubmitCallback) 点击搜索图标、搜索按钮或者按下软键盘搜索按钮时触发该回调事件,提交事件时提供保持Search编辑状态的方法。 **原子化服务API:** 从API version 14开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------- | ---- | ----------------------------- | | callback | [SearchSubmitCallback](#searchsubmitcallback14) | 是 | 点击搜索图标、搜索按钮或者按下软键盘搜索按钮时的回调事件。 | ### onChange onChange(callback: EditableTextOnChangeCallback) 输入内容发生变化时,触发该回调。 在本回调中,若执行了光标操作,需要开发者在预上屏场景下依据previewText参数调整光标逻辑,以适应预上屏场景。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------ | ---- | ---------------------------- | | callback | [EditableTextOnChangeCallback](ts-text-common.md#editabletextonchangecallback12) | 是 | 当前输入文本内容变化时的回调。 | ### onCopy onCopy(callback:Callback\) 进行复制操作时,触发该回调。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | --------- | ------- | ---- | ---------------- | | callback | Callback\ | 是 | 复制回调,其返回值为复制的文本内容。 | ### onCut onCut(callback:Callback\) 进行剪切操作时,触发该回调。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | --------- | ------- | ---- | ---------------- | | callback | Callback\ | 是 | 剪切回调,其返回值为剪切的文本内容。 | ### onPaste onPaste(callback:OnPasteCallback ) 进行粘贴操作时,触发该回调。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------------------- | ------------------------------------------------------------ | ---- | ---------------------- | | callback | [OnPasteCallback](ts-basic-components-textinput.md#onpastecallback18) | 是 | 粘贴回调。 | ### onTextSelectionChange10+ onTextSelectionChange(callback: OnTextSelectionChangeCallback) 文本选择的位置或编辑状态下光标位置发生变化时,触发该回调。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | -------------- | ------ | ---- | ------------------------------------------------- | | callback | [OnTextSelectionChangeCallback](ts-basic-components-textinput.md#ontextselectionchangecallback18) | 是 | 文本选择变化回调或光标位置变化回调。 | ### onContentScroll10+ onContentScroll(callback: OnContentScrollCallback) 文本内容滚动时,触发该回调。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------------ | ------ | ---- | ---------------------------------- | | callback | [OnContentScrollCallback](ts-basic-components-textinput.md#oncontentscrollcallback18) | 是 | 文本内容滚动回调。 | ### onEditChange12+ onEditChange(callback: Callback< boolean >) 输入状态变化时,触发该回调。有光标时为编辑态,无光标时为非编辑态。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | --------- | ---------------------------------- | ---- | -------------------- | | callback |  Callback< boolean > | 是 | 编辑状态改变回调,其返回值为true表示正在输入。 | ### onWillInsert12+ onWillInsert(callback: Callback\) 在将要输入时,触发该回调。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | callback | Callback\<[InsertValue](ts-text-common.md#insertvalue12对象说明), boolean> | 是 | 在将要输入时调用的回调。
在返回true时,表示正常插入,返回false时,表示不插入。
在预上屏和候选词操作时,该回调不触发。
仅支持系统输入法输入的场景。 | ### onDidInsert12+ onDidInsert(callback: Callback\) 在输入完成时,触发该回调。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | callback | Callback\<[InsertValue](ts-text-common.md#insertvalue12对象说明)> | 是 | 在输入完成时调用的回调。
仅支持系统输入法输入的场景。 | ### onWillDelete12+ onWillDelete(callback: Callback\) 在将要删除时,触发该回调。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | callback | Callback\<[DeleteValue](ts-text-common.md#deletevalue12对象说明), boolean> | 是 | 在将要删除时调用的回调。
在返回true时,表示正常删除,返回false时,表示不删除。
在预上屏删除操作时,该回调不触发。
仅支持系统输入法输入的场景。 | ### onDidDelete12+ onDidDelete(callback: Callback\) 在删除完成时,触发该回调。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | callback | Callback\<[DeleteValue](ts-text-common.md#deletevalue12对象说明)> | 是 | 在删除完成时调用的回调。
仅支持系统输入法输入的场景。 | > **说明:** > > 点击清除按钮不触发onDidDelete回调。 ### onWillChange15+ onWillChange(callback: Callback\) 在文本内容将要发生变化时,触发该回调。 onWillChange的回调时序晚于onWillInsert、onWillDelete,早于onDidInsert、onDidDelete。 **原子化服务API:** 从API version 15开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | callback | Callback\<[EditableTextChangeValue](ts-text-common.md#editabletextchangevalue15), boolean> | 是 | 在文本内容将要发生变化时的回调。
返回true时,表示正常修改。返回false时,表示拦截此次触发。 | ### onWillAttachIME20+ onWillAttachIME(callback: Callback\) 在搜索框将要绑定输入法前触发该回调。 在搜索框将要绑定输入法前,可以通过`UIContext`的系统接口[setKeyboardAppearanceConfig](../js-apis-arkui-UIContext-sys.md#setkeyboardappearanceconfig20)设置键盘的样式。 **原子化服务API:** 从API version 20开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | ------------------------------------------------------------ | ---- | ------------------ | | callback | Callback\<[IMEClient](ts-text-common.md#imeclient20对象说明)> | 是 | 在搜索框将要绑定输入法前触发该回调。 | ## SearchController Search组件的控制器继承自[TextContentControllerBase](ts-universal-attributes-text-style.md#textcontentcontrollerbase),涉及的接口有[getTextContentRect](ts-universal-attributes-text-style.md#gettextcontentrect)、[getTextContentLineCount](ts-universal-attributes-text-style.md#gettextcontentlinecount)、[getCaretOffset](ts-universal-attributes-text-style.md#getcaretoffset11)、[addText](ts-universal-attributes-text-style.md#addtext15)、[deleteText](ts-universal-attributes-text-style.md#deletetext15)、[getSelection](ts-universal-attributes-text-style.md#getselection15)、[clearPreviewText](ts-universal-attributes-text-style.md#clearpreviewtext17)以及系统接口[getText](ts-text-common-sys.md#gettext19)。 ### 导入对象 ```ts controller: SearchController = new SearchController(); ``` ### constructor constructor() SearchController的构造函数。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full ### caretPosition caretPosition(value: number): void 设置输入光标的位置。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | ------ | -------- | ---- | ---------------------------------- | | value | number | 是 | 从字符串开始到光标所在位置的长度。 | ### stopEditing10+ stopEditing(): void 退出编辑态。 **原子化服务API:** 从API version 11开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full ### setTextSelection12+ setTextSelection(selectionStart: number, selectionEnd: number, options?: SelectionOptions): void; 组件在获焦状态下,调用该接口设置文本选择区域并高亮显示,且只有在selectionStart小于selectionEnd时,文字才会被选取并高亮显示。 **原子化服务API:** 从API version 12开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | -------------- | -------- | ---- | -------- | | selectionStart | number | 是 | 文本选择区域起始位置,文本框中文字的起始位置为0。
当selectionStart小于0时、按照0处理;当selectionStart大于文字最大长度时、按照文字最大长度处理。
| | selectionEnd | number | 是 | 文本选择区域结束位置。
当selectionEnd小于0时、按照0处理;当selectionEnd大于文字最大长度时、按照文字最大长度处理。
| | options | [SelectionOptions](ts-universal-attributes-text-style.md#selectionoptions12对象说明) | 否 | 选中文字时的配置。
默认值:MenuPolicy.DEFAULT。 | > **说明:** > > 如果selectionStart或selectionEnd被赋值为undefined时,当作0处理。 > > 如果selectionMenuHidden被赋值为true或设备为2in1时,即使options被赋值为MenuPolicy.SHOW,调用setTextSelection也不弹出菜单。 > > 如果选中的文本含有emoji表情时,表情的起始位置包含在设置的文本选中区域内就会被选中。 ## SearchSubmitCallback14+ type SearchSubmitCallback = (searchContent: string, event?: SubmitEvent) => void 点击搜索图标、搜索按钮或者按下软键盘搜索按钮时的回调事件。 **原子化服务API:** 从API version 14开始,该接口支持在原子化服务中使用。 **系统能力:** SystemCapability.ArkUI.ArkUI.Full **参数:** | 参数名 | 类型 | 必填 | 说明 | | -------- | ------------------------------------------------------------ | ---- | -------------------------------------------------------- | | searchContent | string | 是 | 当前搜索框中输入的文本内容。 | | event | [SubmitEvent](ts-basic-components-textinput.md#submitevent11) | 否 | 提交事件。 | ## 示例 ### 示例1(设置与获取光标位置) 从API version 8开始,该示例通过[controller](#searchcontroller)实现了光标位置的设置与获取的功能。 ```ts // xxx.ets @Entry @Component struct SearchExample { @State changeValue: string = ''; @State submitValue: string = ''; @State positionInfo: CaretOffset = { index: 0, x: 0, y: 0 }; controller: SearchController = new SearchController(); build() { Column({space: 10}) { Text('onSubmit:' + this.submitValue).fontSize(18).margin(15) Text('onChange:' + this.changeValue).fontSize(18).margin(15) Search({ value: this.changeValue, placeholder: 'Type to search...', controller: this.controller }) .searchButton('SEARCH') .width('95%') .height(40) .backgroundColor('#F5F5F5') .placeholderColor(Color.Grey) .placeholderFont({ size: 14, weight: 400 }) .textFont({ size: 14, weight: 400 }) .onSubmit((value: string) => { this.submitValue = value; }) .onChange((value: string) => { this.changeValue = value; }) .margin(20) Button('Set caretPosition 1') .onClick(() => { // 设置光标位置到输入的第一个字符后 this.controller.caretPosition(1); }) Button('Get CaretOffset') .onClick(() => { this.positionInfo = this.controller.getCaretOffset(); }) }.width('100%') } } ``` ![search](figures/search.gif) ### 示例2(设置搜索和删除图标) 该示例通过[searchButton](#searchbutton)(从API version 8开始)、[searchIcon](#searchicon10)(从API version 10开始)、[cancelButton](#cancelbutton10)(从API version 10开始)属性展示了设置搜索和删除图标的效果。 ```ts // xxx.ets @Entry @Component struct SearchExample { @State changeValue: string = ''; @State submitValue: string = ''; build() { Column() { Text('onSubmit:' + this.submitValue).fontSize(18).margin(15) Search({ value: this.changeValue, placeholder: 'Type to search...' }) .searchButton('SEARCH') .searchIcon({ src: $r('sys.media.ohos_ic_public_search_filled') }) .cancelButton({ style: CancelButtonStyle.CONSTANT, icon: { src: $r('sys.media.ohos_ic_public_cancel_filled') } }) .width('90%') .height(40) .maxLength(20) .backgroundColor('#F5F5F5') .placeholderColor(Color.Grey) .placeholderFont({ size: 14, weight: 400 }) .textFont({ size: 14, weight: 400 }) .onSubmit((value: string) => { this.submitValue = value; }) .onChange((value: string) => { this.changeValue = value; }) .margin(20) }.width('100%') } } ``` ![searchButton](figures/searchButton.gif) ### 示例3(设置自定义键盘) 该示例通过[customKeyboard](#customkeyboard10)(从API version 10开始)属性实现了自定义键盘的功能。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State inputValue: string = ""; // 自定义键盘组件 @Builder CustomKeyboardBuilder() { Column() { Button('x').onClick(() => { // 关闭自定义键盘 this.controller.stopEditing(); }) Grid() { ForEach([1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#'], (item: number | string) => { GridItem() { Button(item + "") .width(110).onClick(() => { this.inputValue += item; }) } }) }.maxCount(3).columnsGap(10).rowsGap(10).padding(5) }.backgroundColor(Color.Gray) } build() { Column() { Search({ controller: this.controller, value: this.inputValue}) // 绑定自定义键盘 .customKeyboard(this.CustomKeyboardBuilder()).margin(10).border({ width: 1 }) } } } ``` ![customKeyboard](figures/searchCustomKeyboard.png) ### 示例4(设置输入法回车键类型) 该示例通过[enterKeyType](#enterkeytype12)(从API version 12开始)属性实现了动态切换输入法回车键的效果。 ```ts // xxx.ets @Entry @Component struct SearchExample { @State text: string = ''; @State enterTypes: Array = [EnterKeyType.Go, EnterKeyType.Search, EnterKeyType.Send, EnterKeyType.Done, EnterKeyType.Next, EnterKeyType.PREVIOUS, EnterKeyType.NEW_LINE]; @State index: number = 0; build() { Column({ space: 20 }) { Search({ placeholder: '请输入文本', value: this.text }) .width(380) .enterKeyType(this.enterTypes[this.index]) .onChange((value: string) => { this.text = value; }) .onSubmit((value: string) => { console.info("trigger search onsubmit" + value); }) Button('改变EnterKeyType').onClick(() => { this.index = (this.index + 1) % this.enterTypes.length; }) }.width('100%') } } ``` ![searchEnterKeyType](figures/searchEnterKey.gif) ### 示例5(设置文本样式) 从API version 12开始,该示例通过[lineHeight](#lineheight12)、[letterSpacing](#letterspacing12)、[decoration](#decoration12)属性展示了不同样式的文本效果。 ```ts // xxx.ets @Entry @Component struct SearchExample { build() { Row() { Column() { Text('lineHeight').fontSize(9).fontColor(0xCCCCCC) Search({value: 'lineHeight unset'}) .border({ width: 1 }).padding(10) Search({value: 'lineHeight 15'}) .border({ width: 1 }).padding(10).lineHeight(15) Search({value: 'lineHeight 30'}) .border({ width: 1 }).padding(10).lineHeight(30) Text('letterSpacing').fontSize(9).fontColor(0xCCCCCC) Search({value: 'letterSpacing 0'}) .border({ width: 1 }).padding(5).letterSpacing(0) Search({value: 'letterSpacing 3'}) .border({ width: 1 }).padding(5).letterSpacing(3) Search({value: 'letterSpacing -1'}) .border({ width: 1 }).padding(5).letterSpacing(-1) Text('decoration').fontSize(9).fontColor(0xCCCCCC) Search({value: 'LineThrough, Red'}) .border({ width: 1 }).padding(5) .decoration({type: TextDecorationType.LineThrough, color: Color.Red}) Search({value: 'Overline, Red, DOTTED'}) .border({ width: 1 }).padding(5) .decoration({type: TextDecorationType.Overline, color: Color.Red, style: TextDecorationStyle.DOTTED}) Search({value: 'Underline, Red, WAVY'}) .border({ width: 1 }).padding(5) .decoration({type: TextDecorationType.Underline, color: Color.Red, style: TextDecorationStyle.WAVY}) }.height('90%') } .width('90%') .margin(10) } } ``` ![SearchDecoration](figures/search_decoration.png) ### 示例6(设置文字特性效果) 该示例通过[fontFeature](#fontfeature12)(从API version 12开始)属性实现了文本在不同文字特性下的展示效果。 ```ts // xxx.ets @Entry @Component struct SearchExample { @State text1: string = 'This is ss01 on : 0123456789'; @State text2: string = 'This is ss01 off: 0123456789'; build() { Column(){ Search({value: this.text1}) .margin({top:200}) .fontFeature("\"ss01\" on") Search({value: this.text2}) .margin({top:10}) .fontFeature("\"ss01\" off") } .width("90%") .margin("5%") } } ``` ![fontFeature](figures/searchFontFeature.png) ### 示例7(自定义键盘避让) 该示例通过[customKeyboard](#customkeyboard10)(从API version 10开始)属性配置[KeyboardOptions](ts-basic-components-richeditor.md#keyboardoptions12)(从API version 12开始)接口实现了自定义键盘避让的效果。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State inputValue: string = ""; @State height1: string | number = '80%'; @State supportAvoidance: boolean = true; // 自定义键盘组件 @Builder CustomKeyboardBuilder() { Column() { Row() { Button('x').onClick(() => { // 关闭自定义键盘 this.controller.stopEditing(); }).margin(10) } Grid() { ForEach([1, 2, 3, 4, 5, 6, 7, 8, 9, '*', 0, '#'], (item: number | string) => { GridItem() { Button(item + "") .width(110).onClick(() => { this.inputValue += item; }) } }) }.maxCount(3).columnsGap(10).rowsGap(10).padding(5) } .backgroundColor(Color.Gray) } build() { Column() { Row() { Button("20%") .fontSize(24) .onClick(() => { this.height1 = "20%"; }) Button("80%") .fontSize(24) .margin({ left: 20 }) .onClick(() => { this.height1 = "80%"; }) } .justifyContent(FlexAlign.Center) .alignItems(VerticalAlign.Bottom) .height(this.height1) .width("100%") .padding({ bottom: 50 }) Search({ controller: this.controller, value: this.inputValue })// 绑定自定义键盘 .customKeyboard(this.CustomKeyboardBuilder(), { supportAvoidance: this.supportAvoidance }) .margin(10) .border({ width: 1 }) .onChange((value: string) => { this.inputValue = value; }) } } } ``` ![CustomSearchKeyType](figures/searchCustomKeyboard.gif) ### 示例8(设置文本自适应) 从API version 12开始,该示例通过[minFontSize](#minfontsize12)、[maxFontSize](#maxfontsize12)属性展示了文本自适应字号的效果。 ```ts // xxx.ets @Entry @Component struct SearchExample { build() { Row() { Column() { Text('adaptive font').fontSize(9).fontColor(0xCCCCCC) Search({value: 'This is the text without the adaptive font'}) .width('80%').height(90).borderWidth(1) Search({value: 'This is the text without the adaptive font'}) .width('80%').height(90).borderWidth(1) .minFontSize(4) .maxFontSize(40) }.height('90%') } .width('90%') .margin(10) } } ``` ![searchAdaptFont](figures/search_adapt_font.png) ### 示例9(支持插入和删除回调) 从API version 12开始,该示例通过[onWillInsert](#onwillinsert12)、[onDidInsert](#ondidinsert12)、[onWillDelete](#onwilldelete12)、[onDidDelete](#ondiddelete12)接口实现了插入和删除的效果。 ```ts // xxx.ets @Entry @Component struct SearchExample { @State insertValue: string = ""; @State deleteValue: string = ""; @State insertOffset: number = 0; @State deleteOffset: number = 0; @State deleteDirection: number = 0; build() { Row() { Column() { Search({ value: "Search支持插入回调文本" }) .height(60) .onWillInsert((info: InsertValue) => { this.insertValue = info.insertValue; return true; }) .onDidInsert((info: InsertValue) => { this.insertOffset = info.insertOffset; }) Text("insertValue:" + this.insertValue + " insertOffset:" + this.insertOffset).height(30) Search({ value: "Search支持删除回调文本b" }) .height(60) .onWillDelete((info: DeleteValue) => { this.deleteValue = info.deleteValue; this.deleteDirection = info.direction; return true; }) .onDidDelete((info: DeleteValue) => { this.deleteOffset = info.deleteOffset; this.deleteDirection = info.direction; }) Text("deleteValue:" + this.deleteValue + " deleteOffset:" + this.deleteOffset).height(30) Text("deleteDirection:" + (this.deleteDirection == 0 ? "BACKWARD" : "FORWARD")).height(30) }.width('100%') } .height('100%') } } ``` ![SearchInsertAndDelete](figures/SearchInsertAndDelete.PNG) ### 示例10(文本扩展自定义菜单) 从API version 12开始,该示例通过[editMenuOptions](#editmenuoptions12)接口实现了文本设置自定义菜单扩展项的文本内容、图标以及回调的功能,同时,可以在[onPrepareMenu](ts-text-common.md#onpreparemenu20)(从API version 20开始)回调中,进行菜单数据的设置。 ```ts // xxx.ets @Entry @Component struct SearchExample { @State text: string = 'Search editMenuOptions'; @State endIndex: number = 0; onCreateMenu = (menuItems: Array) => { // $r('app.media.startIcon')需要替换为开发者所需的图像资源文件。 let item1: TextMenuItem = { content: 'create1', icon: $r('app.media.startIcon'), id: TextMenuItemId.of('create1'), }; let item2: TextMenuItem = { content: 'create2', id: TextMenuItemId.of('create2'), icon: $r('app.media.startIcon'), }; menuItems.push(item1); menuItems.unshift(item2); return menuItems; } onMenuItemClick = (menuItem: TextMenuItem, textRange: TextRange) => { if (menuItem.id.equals(TextMenuItemId.of("create2"))) { console.info("拦截 id: create2 start:" + textRange.start + "; end:" + textRange.end); return true; } if (menuItem.id.equals(TextMenuItemId.of("prepare1"))) { console.info("拦截 id: prepare1 start:" + textRange.start + "; end:" + textRange.end); return true; } if (menuItem.id.equals(TextMenuItemId.COPY)) { console.info("拦截 COPY start:" + textRange.start + "; end:" + textRange.end); return true; } if (menuItem.id.equals(TextMenuItemId.SELECT_ALL)) { console.info("不拦截 SELECT_ALL start:" + textRange.start + "; end:" + textRange.end); return false; } return false; } // $r('app.media.startIcon')需要替换为开发者所需的图像资源文件。 onPrepareMenu = (menuItems: Array) => { let item1: TextMenuItem = { content: 'prepare1_' + this.endIndex, icon: $r('app.media.startIcon'), id: TextMenuItemId.of('prepare1'), }; menuItems.unshift(item1); return menuItems; } @State editMenuOptions: EditMenuOptions = { onCreateMenu: this.onCreateMenu, onMenuItemClick: this.onMenuItemClick, onPrepareMenu: this.onPrepareMenu }; build() { Column() { Search({ value: this.text }) .width('95%') .editMenuOptions(this.editMenuOptions) .margin({ top: 100 }) .onTextSelectionChange((selectionStart: number, selectionEnd: number) => { this.endIndex = selectionEnd; }) } .width("90%") .margin("5%") } } ``` ![searchEditMenuOptions](figures/searchEditMenuOptions.gif) ### 示例11(设置symbol类型清除按钮) 从API version 10开始,该示例通过[searchIcon](#searchicon10)、[cancelButton](#cancelbutton10)属性展示了自定义右侧symbol类型清除按钮样式的效果。 ```ts // xxx.ets import { SymbolGlyphModifier } from '@kit.ArkUI'; @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State changeValue: string = ''; @State submitValue: string = ''; build() { Column() { Search({ value: this.changeValue, placeholder: 'Type to search...', controller: this.controller }) .searchIcon(new SymbolGlyphModifier($r('sys.symbol.magnifyingglass')).fontColor([Color.Red])) .cancelButton({ style: CancelButtonStyle.CONSTANT, icon: new SymbolGlyphModifier($r('sys.symbol.xmark')).fontColor([Color.Green]) }) .searchButton('SEARCH') .width('95%') .height(40) .backgroundColor('#F5F5F5') .placeholderColor(Color.Grey) .placeholderFont({ size: 14, weight: 400 }) .textFont({ size: 14, weight: 400 }) .margin(10) } .width('100%') .height('100%') } } ``` ![searchSymbolGlyphModifierIcon](figures/searchSymbolGlyphModifierIcon.png) ### 示例12(设置文本是否可复制) 从API version 9开始,该示例通过[copyOption](#copyoption9)属性展示如何设置文本是否可复制。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State copyValue: string = ''; @State cutValue: string = ''; build() { Column({ space: 3 }) { Text("copy: " + this.copyValue) Text("cut:" + this.cutValue) Search({ value: 'Search CopyOption:None', controller: this.controller }) .width('95%') .height(40) .copyOption(CopyOptions.None) .onCopy((value: string) => { this.copyValue = value; }) .onCut((value: string) => { this.cutValue = value; }) Search({ value: 'Search CopyOption:InApp', controller: this.controller }) .width('95%') .height(40) .copyOption(CopyOptions.InApp) .onCopy((value: string) => { this.copyValue = value; }) .onCut((value: string) => { this.cutValue = value; }) Search({ value: 'Search CopyOption:LocalDevice', controller: this.controller }) .width('95%') .height(40) .copyOption(CopyOptions.LocalDevice) .onCopy((value: string) => { this.copyValue = value; }) .onCut((value: string) => { this.cutValue = value; }) } .width('100%') .height('100%') } } ``` ![searchCopyOption](figures/searchCopyOption.gif) ### 示例13(设置文本水平对齐/光标样式/选中背景色) 该示例通过[textAlign](#textalign9)(从API version 9开始)、[caretStyle](#caretstyle10)(从API version 10开始)、[selectedBackgroundColor](#selectedbackgroundcolor12)(从API version 12开始)属性展示如何设置文本的水平对齐、光标样式和选中背景色。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); build() { Column({ space: 3 }) { Search({ value: 'Search textAlign sample', controller: this.controller }) .width('95%') .height(40) .stopBackPress(true) .textAlign(TextAlign.Center) .caretStyle({ width: 3, color: Color.Green }) .selectedBackgroundColor(Color.Gray) } .width('100%') .height('100%') } } ``` ![searchTextAlign](figures/searchTextAlign.gif) ### 示例14(设置默认获焦并拉起软键盘) 该示例通过[defaultFocus](ts-universal-attributes-focus.md#defaultfocus9)(从API version 9开始)、[enableKeyboardOnFocus](#enablekeyboardonfocus10)(从API version 10开始)属性展示如何设置默认获焦并拉起软键盘。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State value: string = 'false'; build() { Column({ space: 3 }) { Text('editing: ' + this.value) Search({ placeholder: 'please enter...', controller: this.controller }) .width('95%') .height(40) .defaultFocus(true) .enableKeyboardOnFocus(true) .enablePreviewText(true) .enableHapticFeedback(true) .onEditChange((data: boolean) => { this.value = data ? 'true' : 'false'; }) } .width('100%') .height('100%') } } ``` ![searchEnableKeyboardOnFocus](figures/searchEnableKeyboardOnFocus.gif) ### 示例15(关闭系统文本选择菜单) 该示例通过[selectionMenuHidden](#selectionmenuhidden10)(从API version 10开始)属性展示如何关闭系统文本选择菜单。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); build() { Column({ space: 3 }) { Search({ value: '123456', controller: this.controller }) .width('95%') .height(40) .type(SearchType.NUMBER) .selectionMenuHidden(true) } .width('100%') .height('100%') } } ``` ![searchSelectionMenuHidden](figures/searchSelectionMenuHidden.gif) ### 示例16(对输入的文本进行过滤) 从API version 12开始,该示例通过[inputFilter](#inputfilter12)属性展示如何对输入的文本进行内容的过滤,以限制输入内容。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State filterValue: string = ''; build() { Column({ space: 3 }) { Text('Filter:' + this.filterValue) Search({ placeholder: 'please enter...', controller: this.controller }) .width('95%') .height(40) .textIndent(5) .halfLeading(true) .inputFilter('[a-z]', (filterValue: string) => { this.filterValue = filterValue; }) } .width('100%') .height('100%') } } ``` ![searchInputFilter](figures/searchInputFilter.gif) ### 示例17(设置选中指定区域的文本内容) 该示例通过[setTextSelection](#settextselection12)(从API version 12开始)方法展示如何设置选中指定区域的文本内容以及菜单的显隐策略。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State startIndex: number = 0; @State endIndex: number = 0; build() { Column({ space: 3 }) { Text('Selection start:' + this.startIndex + ' end:' + this.endIndex) Search({ value: 'Hello World', controller: this.controller }) .width('95%') .height(40) .minFontScale(1) .maxFontScale(1.5) .defaultFocus(true) .onTextSelectionChange((selectionStart: number, selectionEnd: number) => { this.startIndex = selectionStart; this.endIndex = selectionEnd; }) Button('Selection [0,3]') .onClick(() => { this.controller.setTextSelection(0, 3, { menuPolicy: MenuPolicy.SHOW }); }) } .width('100%') .height('100%') } } ``` ![searchSetTextSelection](figures/searchSetTextSelection.gif) ### 示例18(设置文本滚动事件) 从API version 10开始,该示例通过[onContentScroll](#oncontentscroll10)事件展示如何设置文本滚动事件的回调。 ```ts // xxx.ets @Entry @Component struct SearchExample { controller: SearchController = new SearchController(); @State offsetX: number = 0; @State offsetY: number = 0; build() { Column({ space: 3 }) { Text('offset x:' + this.offsetX + ' y:' + this.offsetY) Search({ value: 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', controller: this.controller }) .width(200) .height(40) .onContentScroll((totalOffsetX: number, totalOffsetY: number) => { this.offsetX = totalOffsetX; this.offsetY = totalOffsetY; }) } .width('100%') .height('100%') } } ``` ![searchOnContentScroll](figures/searchOnContentScroll.gif) ### 示例19(设置最小字体范围与最大字体范围) 从API version 18开始,该示例通过[minFontScale](#minfontscale18)、[maxFontScale](#maxfontscale18)设置字体显示最小与最大范围。 ```json // 开启应用缩放跟随系统 // AppScope/resources/base,新建文件夹profile。 // AppScope/resources/base/profile,新建文件configuration.json。 // AppScope/resources/base/profile/configuration.json,增加如下代码。 { "configuration": { "fontSizeScale": "followSystem", "fontSizeMaxScale": "3.2" } } ``` ```json // AppScope/app.json5,修改如下代码。 { "app": { "bundleName": "com.example.myapplication", "vendor": "example", "versionCode": 1000000, "versionName": "1.0.0", "icon": "$media:app_icon", "label": "$string:app_name", "configuration": "$profile:configuration" } } ``` ```ts // xxx.ets @Entry @Component struct SearchExample { @State minFontScale: number = 0.85; @State maxFontScale: number = 2; build() { Column() { Column({ space: 30 }) { Text("系统字体变大变小,变大变小aaaaaaaAAAAAA") Search({ placeholder: 'The text area can hold an unlimited amount of text. input your word...', }) .minFontScale(this.minFontScale)// 设置最小字体缩放倍数,参数为undefined则跟随系统默认倍数缩放 .maxFontScale(this.maxFontScale)// 设置最大字体缩放倍数,参数为undefined则跟随系统默认倍数缩放 }.width('100%') } } } ``` ### 示例20(设置文本描边) 从API version 20开始,该示例通过[strokeWidth](#strokewidth20)和[strokeColor](#strokecolor20)属性设置文本的描边宽度及颜色。 ```ts // xxx.ets import { LengthMetrics } from '@kit.ArkUI'; @Entry @Component struct SearchExample { build() { Row() { Column() { Text('stroke feature').fontSize(9).fontColor(0xCCCCCC) Search({ value: 'Text without stroke' }) .width('100%') .height(60) .borderWidth(1) .minFontSize(40) .maxFontSize(40) Search({ value: 'Text with stroke' }) .width('100%') .height(60) .borderWidth(1) .minFontSize(40) .maxFontSize(40) .strokeWidth(LengthMetrics.px(-3.0)) .strokeColor(Color.Red) Search({ value: 'Text with stroke' }) .width('100%') .height(60) .borderWidth(1) .minFontSize(40) .maxFontSize(40) .strokeWidth(LengthMetrics.px(3.0)) .strokeColor(Color.Red) }.height('90%') } .width('90%') .margin(10) } } ``` ![searchSetStroke](figures/searchSetStroke.png) ### 示例21(设置中西文自动间距) 从API version 20开始,该示例通过[enableAutoSpacing](#enableautospacing20)属性设置中西文自动间距。 ```ts // xxx.ets @Entry @Component struct SearchExample { build() { Row() { Column() { Text('开启中西文自动间距').margin(5) Search({value: '中西文Auto Spacing自动间距'}) .enableAutoSpacing(true) Text('关闭中西文自动间距').margin(5) Search({value: '中西文Auto Spacing自动间距'}) .enableAutoSpacing(false) }.height('100%') } .width('60%') } } ``` ![searchEnableAutoSpacing](figures/searchEnableAutoSpacing.png)