如何查看触摸热区范围

如何查看触摸热区范围

HarmonyOS
2024-07-22 12:29:03
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
kraml

目前只能通过自定义的方式获取responseRegion。参考文档:触摸热区设置

@Entry 
@Component 
struct TouchTargetExample { 
  @State text: string = '' 
  @State x:number = 0 
  @State y:number = 0 
  @State reg_width:string = '50%' 
  @State reg_height:string = '100%' 
 
  build() { 
    Column({ space: 20 }) { 
      Text("{x:0,y:0,width:'50%',height:'100%'}") 
 
      // 热区宽度为按钮的一半,点击右侧无响应 
      Button('button') 
        .responseRegion({ x: this.x, y: this.y, width: this.reg_width, height: this.reg_height }) 
        .onClick(() => { 
          this.text = 'button clicked' 
          console.log('button clicked: '+this.x+' '+this.y+' '+this.reg_width+' '+this.reg_height) 
        }) 
 
      Text(this.text).margin({ top: 10 }) 
    }.width('100%').margin({ top: 100 }) 
  } 
}
分享
微博
QQ
微信
回复
2024-07-22 20:11:50
相关问题
Progress触摸增大demo
799浏览 • 1回复 待解决
HarmonyOS如何增加控件点击
483浏览 • 1回复 待解决
触摸TextInput组件的背景颜色如何更改
512浏览 • 1回复 待解决
鸿蒙响应屏幕触摸事件如何获取?
7348浏览 • 1回复 已解决
求大佬告知如何屏蔽触摸事件
631浏览 • 1回复 待解决
PolarDB增加存储可用如何操作?
2746浏览 • 1回复 待解决
有谁知道如何屏蔽触摸事件
1673浏览 • 1回复 待解决
如何设置组件的尺寸范围
313浏览 • 1回复 待解决
HarmonyOS 控件多指触摸问题
305浏览 • 1回复 待解决
js FA支持多点触摸吗?
4515浏览 • 1回复 待解决
如何去实现部分har页面的更新
291浏览 • 1回复 待解决
HarmonyOS 如何查看HCI日志
427浏览 • 1回复 待解决
HarmonyOS 如何查看权限级别?
230浏览 • 1回复 待解决
如何查看OceanBase 集群参数?
3551浏览 • 1回复 待解决
重载该如何实现?有人知道吗?
742浏览 • 1回复 待解决
HarmonyOS OCR能力范围
74浏览 • 1回复 待解决
Flutter 重载方法有哪些?
257浏览 • 1回复 待解决
HarmonyOS App是否支持更新?
46浏览 • 1回复 待解决
如何查看AdsKitService版本
2431浏览 • 1回复 待解决
如何找出Redis中的大Key与Key?
2689浏览 • 1回复 待解决
鸿蒙应用开发如何查看源码?
14317浏览 • 2回复 待解决