W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
設(shè)置組件是否可以響應(yīng)點(diǎn)擊事件、觸摸事件等手指交互事件。
從API Version 9 開始,該接口廢棄,建議使用hitTestBehavior替代。
從API Version 7開始支持。后續(xù)版本如有新增內(nèi)容,則采用上角標(biāo)單獨(dú)標(biāo)記該內(nèi)容的起始版本。
- // xxx.ets
- @Entry
- @Component
- struct TouchAbleExample {
- @State text1: string = ''
- @State text2: string = ''
- build() {
- Stack() {
- Rect()
- .fill(Color.Gray).width(150).height(150)
- .onClick(() => {
- console.info(this.text1 = 'Rect Clicked')
- })
- .overlay(this.text1, { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- Ellipse()
- .fill(Color.Pink).width(150).height(80)
- .touchable(false) // 點(diǎn)擊Ellipse區(qū)域,不會(huì)打印 “Ellipse Clicked”
- .onClick(() => {
- console.info(this.text2 = 'Ellipse Clicked')
- })
- .overlay(this.text2, { align: Alignment.Bottom, offset: { x: 0, y: 20 } })
- }.margin(100)
- }
- }
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: