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