TextPicker
滑動選擇文本內容的組件。
說明:
開發前請熟悉鴻蒙開發指導文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
該組件從API Version 8開始支持。后續版本如有新增內容,則采用上角標單獨標記該內容的起始版本。
子組件
無
接口
TextPicker(options?: {range: string[] | string[][] | Resource | TextPickerRangeContent[] | TextCascadePickerRangeContent[], selected?: number, value?: string})
根據range指定的選擇范圍創建文本選擇器。
參數:
參數名 | 參數類型 | 必填 | 參數描述 |
---|---|---|---|
range | string[] | string[][]10+ | [Resource] |
selected | number | number[]10+ | 否 |
value | string | string[]10+ | 否 |
TextPickerRangeContent10+類型說明
參數名 | 參數類型 | 必填 | 參數描述 |
---|---|---|---|
icon | string | [Resource] | 是 |
text | string | [Resource] | 否 |
TextCascadePickerRangeContent10+類型說明
參數名 | 參數類型 | 必填 | 參數描述 |
---|---|---|---|
text | string | [Resource] | 是 |
children | [TextCascadePickerRangeContent][] | 否 | 聯動數據。 |
屬性
除支持[通用屬性]外,還支持以下屬性:
名稱 | 參數類型 | 描述 |
---|---|---|
defaultPickerItemHeight | number | string |
disappearTextStyle10+ | [PickerTextStyle] | 設置所有選項中最上和最下兩個選項的文本顏色、字號、字體粗細。 默認值: { color: '#ff182431', font: { size: '14fp', weight: FontWeight.Regular } } |
textStyle10+ | [PickerTextStyle] | 設置所有選項中除了最上、最下及選中項以外的文本顏色、字號、字體粗細。 默認值: { color: '#ff182431', font: { size: '16fp', weight: FontWeight.Regular } } |
selectedTextStyle10+ | [PickerTextStyle] | 設置選中項的文本顏色、字號、字體粗細。 默認值: { color: '#ff007dff', font: { size: '20vp', weight: FontWeight.Medium } } |
selectedIndex10+ | number | number[] |
canLoop10+ | boolean | 設置是否可循環滾動,true:可循環,false:不可循環,默認值:true。 |
事件
除支持[通用事件]外,還支持以下事件:
名稱 | 描述 |
---|---|
onChange(callback: (value: string | string[]10+, index: number |
HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿 |
示例
示例1
// xxx.ets
class bottom {
bottom:number = 50
}
let bott:bottom = new bottom()
@Entry
@Component
struct TextPickerExample {
private select: number = 1
private apfruits: string[] = ['apple1', 'apple2', 'apple3', 'apple4']
private orfruits: string[] = ['orange1', 'orange2', 'orange3', 'orange4']
private pefruits: string[] = ['peach1', 'peach2', 'peach3', 'peach4']
private multi: string[][] = [this.apfruits, this.orfruits, this.pefruits]
private cascade: TextCascadePickerRangeContent[] = [
{
text: '遼寧省',
children: [{ text: '沈陽市', children: [{ text: '沈河區' }, { text: '和平區' }, { text: '渾南區' }] },
{ text: '大連市', children: [{ text: '中山區' }, { text: '金州區' }, { text: '長海縣' }] }]
},
{
text: '吉林省',
children: [{ text: '長春市', children: [{ text: '南關區' }, { text: '寬城區' }, { text: '朝陽區' }] },
{ text: '四平市', children: [{ text: '鐵西區' }, { text: '鐵東區' }, { text: '梨樹縣' }] }]
},
{
text: '黑龍江省',
children: [{ text: '哈爾濱市', children: [{ text: '道里區' }, { text: '道外區' }, { text: '南崗區' }] },
{ text: '牡丹江市', children: [{ text: '東安區' }, { text: '西安區' }, { text: '愛民區' }] }]
}
]
build() {
Column() {
TextPicker({ range: this.apfruits, selected: this.select })
.onChange((value: string | string[], index: number | number[]) = > {
console.info('Picker item changed, value: ' + value + ', index: ' + index)
}).margin(bott)
TextPicker({ range: this.multi })
.onChange((value: string | string[], index: number | number[]) = > {
console.info('TextPicker 多列:onChange ' + JSON.stringify(value) + ', ' + 'index: ' + JSON.stringify(index))
}).margin(bott)
TextPicker({ range: this.cascade })
.onChange((value: string | string[], index: number | number[]) = > {
console.info('TextPicker 多列聯動:onChange ' + JSON.stringify(value) + ', ' + 'index: ' + JSON.stringify(index))
})
}
}
}
示例2
// xxx.ets
@Entry
@Component
struct TextPickerExample {
private select: number = 1
private fruits: string[] = ['apple1', 'orange2', 'peach3', 'grape4']
build() {
Column() {
TextPicker({ range: this.fruits, selected: this.select })
.onChange((value: string | string[], index: number | number[]) = > {
console.info('Picker item changed, value: ' + value + ', index: ' + index)
})
.disappearTextStyle({color: Color.Red, font: {size: 15, weight: FontWeight.Lighter}})
.textStyle({color: Color.Black, font: {size: 20, weight: FontWeight.Normal}})
.selectedTextStyle({color: Color.Blue, font: {size: 30, weight: FontWeight.Bolder}})
}.width('100%').height('100%')
}
}
審核編輯 黃宇
聲明:本文內容及配圖由入駐作者撰寫或者入駐合作網站授權轉載。文章觀點僅代表作者本人,不代表電子發燒友網立場。文章及其配圖僅供工程師學習之用,如有內容侵權或者其他違規問題,請聯系本站處理。
舉報投訴
-
組件
+關注
關注
1文章
505瀏覽量
17806 -
鴻蒙
+關注
關注
57文章
2321瀏覽量
42749
發布評論請先 登錄
相關推薦
HarmonyOS/OpenHarmony應用開發-ArkTS的聲明式開發范式
軌跡。狀態與數據管理狀態數據管理作為基于ArkTS的聲明式開發范式的特色,通過功能不同的裝飾器給開發者提供了清晰的頁面更新渲染流程和管道。狀態管理包括UI組件狀態和應用程序狀態,兩者協
發表于 01-17 15:09
HarmonyOS/OpenHarmony應用開發-聲明式開發范式組件匯總
組件是構建頁面的核心,每個組件通過對數據和方法的簡單封裝,實現獨立的可視、可交互功能單元。組件之間相互獨立,隨取隨用,也可以在需求相同的地方重復使用。聲明
發表于 01-19 11:14
鴻蒙ArkTS聲明式組件:PatternLock
圖案密碼鎖組件,以九宮格圖案的方式輸入密碼,用于密碼驗證場景。手指在PatternLock組件區域按下時開始進入輸入狀態,手指離開屏幕時結束輸入狀態完成密碼輸入。
評論