焦點(diǎn)事件
焦點(diǎn)事件指頁(yè)面焦點(diǎn)在可獲焦組件間移動(dòng)時(shí)觸發(fā)的事件,組件可使用焦點(diǎn)事件來(lái)處理相關(guān)邏輯。
說(shuō)明:
開(kāi)發(fā)前請(qǐng)熟悉鴻蒙開(kāi)發(fā)指導(dǎo)文檔 :[gitee.com/li-shizhen-skin/harmony-os/blob/master/README.md
]
事件
名稱 | 支持冒泡 | 功能描述 |
---|---|---|
onFocus(event: () => void) | 否 | 當(dāng)前組件獲取焦點(diǎn)時(shí)觸發(fā)的回調(diào)。 |
onBlur(event:() => void) | 否 | 當(dāng)前組件失去焦點(diǎn)時(shí)觸發(fā)的回調(diào)。 |
示例
`HarmonyOS與OpenHarmony鴻蒙文檔籽料:mau123789是v直接拿`
// xxx.ets
@Entry
@Component
struct FocusEventExample {
@State oneButtonColor: string = '#FFC0CB'
@State twoButtonColor: string = '#87CEFA'
@State threeButtonColor: string = '#90EE90'
build() {
Column({ space: 20 }) {
// 通過(guò)外接鍵盤(pán)的上下鍵可以讓焦點(diǎn)在三個(gè)按鈕間移動(dòng),按鈕獲焦時(shí)顏色變化,失焦時(shí)變回原背景色
Button('First Button')
.backgroundColor(this.oneButtonColor)
.width(260)
.height(70)
.fontColor(Color.Black)
.focusable(true)
.onFocus(() = > {
this.oneButtonColor = '#FF0000'
})
.onBlur(() = > {
this.oneButtonColor = '#FFC0CB'
})
Button('Second Button')
.backgroundColor(this.twoButtonColor)
.width(260)
.height(70)
.fontColor(Color.Black)
.focusable(true)
.onFocus(() = > {
this.twoButtonColor = '#FF0000'
})
.onBlur(() = > {
this.twoButtonColor = '#87CEFA'
})
Button('Third Button')
.backgroundColor(this.threeButtonColor)
.width(260)
.height(70)
.fontColor(Color.Black)
.focusable(true)
.onFocus(() = > {
this.threeButtonColor = '#FF0000'
})
.onBlur(() = > {
this.threeButtonColor = '#90EE90'
})
}.width('100%').margin({ top: 20 })
}
}
審核編輯 黃宇
-
鴻蒙
+關(guān)注
關(guān)注
60文章
2620瀏覽量
44063
發(fā)布評(píng)論請(qǐng)先 登錄
鴻蒙ArkTS的起源和簡(jiǎn)介
HarmonyOS/OpenHarmony應(yīng)用開(kāi)發(fā)-ArkTS的聲明式開(kāi)發(fā)范式
鴻蒙開(kāi)發(fā)之ArkTS基礎(chǔ)知識(shí)

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【按鍵事件】

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【組件快捷鍵事件】

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【顯隱控制】 通用屬性

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【禁用控制】 通用屬性

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【形狀裁剪】 通用屬性

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【菜單控制】 通用屬性

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【多態(tài)樣式】 通用屬性

鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表【分布式遷移標(biāo)識(shí)】 通用屬性
鴻蒙ArkTS聲明式開(kāi)發(fā):跨平臺(tái)支持列表 組合手勢(shì)

評(píng)論