TextArea
多行文本輸入框組件,當(dāng)輸入的文本內(nèi)容超過組件寬度時(shí)會(huì)自動(dòng)換行顯示。
高度未設(shè)置時(shí),組件無默認(rèn)高度,自適應(yīng)內(nèi)容高度。寬度未設(shè)置時(shí),默認(rèn)撐滿最大寬度。
說明:
開發(fā)前請(qǐng)熟悉鴻蒙開發(fā)指導(dǎo)文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
該組件從API Version 7開始支持。后續(xù)版本如有新增內(nèi)容,則采用上角標(biāo)單獨(dú)標(biāo)記該內(nèi)容的起始版本。
子組件
無
接口
TextArea(value?:{placeholder?: ResourceStr, text?: ResourceStr, controller?: TextAreaController})
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
placeholder | [ResourceStr] | 否 | 設(shè)置無輸入時(shí)的提示文本。輸入內(nèi)容后,提示文本不顯示。 僅設(shè)置placeholder屬性時(shí),手柄依然跟隨拖動(dòng),手柄松開后光標(biāo)停留在文字開頭位置。 |
text | [ResourceStr] | 否 | 設(shè)置輸入框當(dāng)前的文本內(nèi)容。當(dāng)組件設(shè)置[stateStyles]等刷新屬性時(shí),建議通過onChange事件將狀態(tài)變量與文本實(shí)時(shí)綁定,避免組件刷新時(shí)TextArea中的文本內(nèi)容異常。 從API version 10開始,該參數(shù)支持[$$]雙向綁定變量。 |
controller8+ | [TextAreaController] | 否 | 設(shè)置TextArea控制器。 |
屬性
除支持[通用屬性]和[文本通用屬性]的fontColor、fontSize、fontStyle、fontWeight、fontFamily外,還支持以下屬性:
名稱 | 參數(shù)類型 | 描述 |
---|---|---|
placeholderColor | [ResourceColor] | 設(shè)置placeholder文本顏色。 默認(rèn)值跟隨主題。 |
placeholderFont | [Font] | 設(shè)置placeholder文本樣式,包括字體大小,字體粗細(xì),字體族,字體風(fēng)格。目前僅支持默認(rèn)字體族。 |
textAlign | [TextAlign] | 設(shè)置文本在輸入框中的水平對(duì)齊方式。 默認(rèn)值:TextAlign.Start**說明:**支持TextAlign.Start、TextAlign.Center和TextAlign.End。 可通過[align]屬性控制文本段落在垂直方向上的位置,此組件中不可通過align屬性控制文本段落在水平方向上的位置,即align屬性中Alignment.TopStart、Alignment.Top、Alignment.TopEnd效果相同,控制內(nèi)容在頂部,Alignment.Start、Alignment.Center、Alignment.End效果相同,控制內(nèi)容垂直居中,Alignment.BottomStart、Alignment.Bottom、Alignment.BottomEnd效果相同,控制內(nèi)容在底部。 從API version 11開始,textAlign可設(shè)置TextAlign.JUSTIFY |
caretColor | [ResourceColor] | 設(shè)置輸入框光標(biāo)顏色。 默認(rèn)值:'#007DFF'。 |
inputFilter8+ | { value: [ResourceStr], error?: (value: string) => void } | 通過正則表達(dá)式設(shè)置輸入過濾器。匹配表達(dá)式的輸入允許顯示,不匹配的輸入將被過濾。僅支持單個(gè)字符匹配,不支持字符串匹配。 - value:設(shè)置正則表達(dá)式。 - error:正則匹配失敗時(shí),返回被過濾的內(nèi)容。 |
copyOption9+ | [CopyOptions] | 設(shè)置輸入的文本是否可復(fù)制。 默認(rèn)值:CopyOptions.LocalDevice,支持設(shè)備內(nèi)復(fù)制。 設(shè)置CopyOptions.None時(shí),當(dāng)前TextArea中的文字無法被復(fù)制或剪切,僅支持粘貼。 |
maxLength10+ | number | 設(shè)置文本的最大輸入字符數(shù)。 默認(rèn)不設(shè)置最大輸入字符數(shù)限制。 到達(dá)文本最大字符限制,將無法繼續(xù)輸入字符,同時(shí)邊框變?yōu)榧t色。 |
showCounter10+ | boolean | 設(shè)置文本最大輸入字符數(shù)后,是否顯示字?jǐn)?shù)。 默認(rèn)值:false |
style10+ | [TextContentStyle] | 設(shè)置文本框多態(tài)樣式。 默認(rèn)值:TextContentStyle.DEFAULT |
enableKeyboardOnFocus10+ | boolean | TextArea獲焦時(shí),是否綁定輸入法 默認(rèn)值:true。從API version 10開始,獲焦默認(rèn)綁定輸入法。 |
selectionMenuHidden10+ | boolean | 設(shè)置長按輸入框或者右鍵輸入框時(shí),是否彈出文本選擇菜單。 默認(rèn)值:false |
maxLines10+ | number | 設(shè)置內(nèi)聯(lián)輸入風(fēng)格編輯態(tài)時(shí)文本可顯示的最大行數(shù)。 默認(rèn)值:3**說明:**取值范圍:(0, +∞)。 |
customKeyboard10+ | [CustomBuilder] | 設(shè)置自定義鍵盤。**說明:**當(dāng)設(shè)置自定義鍵盤時(shí),輸入框激活后不會(huì)打開系統(tǒng)輸入法,而是加載指定的自定義組件。 自定義鍵盤的高度可以通過自定義組件根節(jié)點(diǎn)的height屬性設(shè)置,寬度不可設(shè)置,使用系統(tǒng)默認(rèn)值。 自定義鍵盤采用覆蓋原始界面的方式呈現(xiàn),不會(huì)對(duì)應(yīng)用原始界面產(chǎn)生壓縮或者上提。 自定義鍵盤無法獲取焦點(diǎn),但是會(huì)攔截手勢(shì)事件。 默認(rèn)在輸入控件失去焦點(diǎn)時(shí),關(guān)閉自定義鍵盤,開發(fā)者也可以通過[TextAreaController].[stopEditing]方法控制鍵盤關(guān)閉。 |
說明:
[通用屬性padding]的默認(rèn)值為:
{
top: 8 vp,
right: 16 vp,
bottom: 8 vp,
left: 16 vp
}
從API version 11開始,多行輸入框可設(shè)置.width('auto')使組件寬度自適應(yīng)文本寬度,自適應(yīng)時(shí)組件寬度受constraintSize屬性以及父容器傳遞的最大最小寬度限制,其余使用方式參考[尺寸設(shè)置]。
事件
除支持[通用事件]外,還支持以下事件:
名稱 | 功能描述 |
---|---|
onChange(callback: (value: string) => void) | 輸入內(nèi)容發(fā)生變化時(shí),觸發(fā)該回調(diào)。 - value:當(dāng)前輸入的文本內(nèi)容。 |
onEditChange(callback: (isEditing: boolean) => void)10+ | 輸入狀態(tài)變化時(shí),觸發(fā)該回調(diào)。有光標(biāo)時(shí)為編輯態(tài),無光標(biāo)時(shí)為非編輯態(tài)。isEditing為true表示正在輸入。 |
onCopy8+(callback:(value: string) => void) | 長按輸入框內(nèi)部區(qū)域彈出剪貼板后,點(diǎn)擊剪切板復(fù)制按鈕,觸發(fā)該回調(diào)。 - value:復(fù)制的文本內(nèi)容。 |
onCut8+(callback:(value: string) => void) | 長按輸入框內(nèi)部區(qū)域彈出剪貼板后,點(diǎn)擊剪切板剪切按鈕,觸發(fā)該回調(diào)。 - value:剪切的文本內(nèi)容。 |
onPaste8+(callback:(value: string) => void) | 長按輸入框內(nèi)部區(qū)域彈出剪貼板后,點(diǎn)擊剪切板粘貼按鈕,觸發(fā)該回調(diào)。 - value:粘貼的文本內(nèi)容。 |
onTextSelectionChange(callback: (selectionStart: number, selectionEnd: number) => void)10+ | 文本選擇的位置發(fā)生變化時(shí),觸發(fā)該回調(diào)。 selectionStart:文本選擇區(qū)域起始位置,文本框中文字的起始位置為0。 selectionEnd:文本選擇區(qū)域結(jié)束位置。 |
onContentScroll(callback: (totalOffsetX: number, totalOffsetY: number) => void)10+ | 文本內(nèi)容滾動(dòng)時(shí),觸發(fā)該回調(diào)。 totalOffsetX:文本在內(nèi)容區(qū)的橫坐標(biāo)偏移。 totalOffsetY:文本在內(nèi)容區(qū)的縱坐標(biāo)偏移。 |
TextAreaController8+
TextArea組件的控制器,目前可通過它設(shè)置TextArea組件的光標(biāo)位置。
導(dǎo)入對(duì)象
controller: TextAreaController = new TextAreaController()
caretPosition8+
caretPosition(value: number): void
設(shè)置輸入光標(biāo)的位置。
參數(shù):
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
value | number | 是 | 從字符串開始到光標(biāo)所在位置的字符長度。 |
setTextSelection10+
setTextSelection(selectionStart: number, selectionEnd: number): void
組件在獲焦?fàn)顟B(tài)下,調(diào)用該接口設(shè)置文本選擇區(qū)域并高亮顯示,且只有在selectionStart小于selectionEnd時(shí),文字才會(huì)被選取、高亮顯示。
參數(shù):
參數(shù)名 | 參數(shù)類型 | 必填 | 參數(shù)描述 |
---|---|---|---|
selectionStart | number | 是 | 文本選擇區(qū)域起始位置,文本框中文字的起始位置為0。 當(dāng)selectionStart小于0時(shí)、按照0處理;當(dāng)selectionStart大于文字最大長度時(shí)、按照文字最大長度處理。 |
selectionEnd | number | 是 | 文本選擇區(qū)域結(jié)束位置。 當(dāng)selectionEnd小于0時(shí)、按照0處理;當(dāng)selectionEnd大于文字最大長度時(shí)、按照文字最大長度處理。 |
stopEditing10+
stopEditing(): void
退出編輯態(tài)。
getTextContentRect10+
getTextContentRect(): [RectResult]
獲取已編輯文本內(nèi)容區(qū)域相對(duì)組件的位置和大小,返回值單位為像素。
返回值:
類型 | 說明 |
---|---|
[RectResult] | 已編輯文本內(nèi)容的相對(duì)組件的位置和大小。 |
說明:
- 初始不輸入文本時(shí),返回值中有相對(duì)組件的位置信息,大小為0。
- 返回值中的位置信息是第一個(gè)字符相對(duì)于可編輯組件的位置。
- 有輸入時(shí)返回信息中的寬度是組件編輯的固定寬度。
RectResult10+
位置和大小。
參數(shù) | 類型 | 描述 |
---|---|---|
x | number | 水平方向橫坐標(biāo)。 |
y | number | 豎直方向縱坐標(biāo)。 |
width | number | 內(nèi)容寬度大小。 |
height | number | 內(nèi)容高度大小。 |
getTextContentLineCount10+
getTextContentLineCount(): number
獲取已編輯文本內(nèi)容的行數(shù)。
返回值:
類型 | 說明 |
---|---|
number | 已編輯文本內(nèi)容行數(shù)。HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿 |
示例
示例1
// xxx.ets
@Entry
@Component
struct TextAreaExample {
@State text: string = ''
controller: TextAreaController = new TextAreaController()
build() {
Column() {
TextArea({
text: this.text,
placeholder: 'The text area can hold an unlimited amount of text. input your word...',
controller: this.controller
})
.placeholderFont({ size: 16, weight: 400 })
.width(336)
.height(56)
.margin(20)
.fontSize(16)
.fontColor('#182431')
.backgroundColor('#FFFFFF')
.onChange((value: string) = > {
this.text = value
})
Text(this.text)
Button('Set caretPosition 1')
.backgroundColor('#007DFF')
.margin(15)
.onClick(() = > {
// 設(shè)置光標(biāo)位置到第一個(gè)字符后
this.controller.caretPosition(1)
})
}.width('100%').height('100%').backgroundColor('#F1F3F5')
}
}
示例2
// xxx.ets
@Entry
@Component
struct TextAreaExample {
@State text: string = 'test'
@State counterVisible: boolean = false
@State maxNumber: number = -1
controller: TextAreaController = new TextAreaController()
build() {
Column() {
TextArea({
text: this.text,
placeholder: 'The text area can hold an unlimited amount of text. input your word...',
controller: this.controller
})
.placeholderFont({ size: 16, weight: 400 })
.width(336)
.height(56)
.margin(20)
.fontSize(16)
.fontColor('#182431')
.maxLength(4)
.showCounter(true)
.backgroundColor('#FFFFFF')
.onChange((value: string) = > {
this.text = value
})
}.width('100%').height('100%').backgroundColor('#F1F3F5')
}
}
示例3
// xxx.ets
@Entry
@Component
struct TextAreaExample {
controller: TextAreaController = new TextAreaController()
@State inputValue: string = ""
// 自定義鍵盤組件
@Builder CustomKeyboardBuilder() {
Column() {
Button('x').onClick(() = > {
// 關(guān)閉自定義鍵盤
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() {
TextArea({ controller: this.controller, text: this.inputValue})
// 綁定自定義鍵盤
.customKeyboard(this.CustomKeyboardBuilder()).margin(10).border({ width: 1 })
.height(200)
}
}
}
審核編輯 黃宇
-
組件
+關(guān)注
關(guān)注
1文章
503瀏覽量
17784 -
鴻蒙
+關(guān)注
關(guān)注
57文章
2302瀏覽量
42689
發(fā)布評(píng)論請(qǐng)先 登錄
相關(guān)推薦
評(píng)論