HarmonyOS responseRegion

.responseRegion([{ x: "-100%", y: "-100%", width: '300%', height: '300%' }])

负值似乎当成了正值在处理?或者没有生效,预期是扩大1倍的触摸区域,实际上压根不知道区域在哪了。

HarmonyOS
2024-10-28 09:55:19
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zxjiu

​参考链接:

https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/ts-universal-attributes-hit-test-behavior-V5#hittestbehavior

@Entry  
@Component  
export struct ExpandTextComponent {  
  @State text: string = ''  
  controller: TextAreaController = new TextAreaController()  
  
  build() {  
    Stack() {  
      Column({ space: 20 }) {  
        Button("啊啊啊啊")  
          .onClick(() => {  
            this.text += '1'  
          })  
  
          .responseRegion({ x: '-100%', y: '-100%', width: '200%', height: '200%' })  
  
        Text(this.text).margin({ top: 50 })  
      }.width('100%').margin({ top: 10 })  
      .zIndex(2)  
      .hitTestBehavior(HitTestMode.Transparent)  
      //TODO  
      Stack().size({  
        width:"100%",  
        height:"100%"  
      })  
    }  
    .backgroundColor(Color.Orange)  
    .size({ width:'100%',height:'100%' })  
  }  
}
分享
微博
QQ
微信
回复
2024-10-28 15:16:57
相关问题
HarmonyOS 如何扩大组件点击区域
491浏览 • 1回复 待解决
HarmonyOS flutter接入HarmonyOS原生视图
74浏览 • 1回复 待解决
HarmonyOS 关于HarmonyOS应用的备案
40浏览 • 1回复 待解决
HarmonyOS
57浏览 • 1回复 待解决
HarmonyOS h5和HarmonyOS怎么通信?
161浏览 • 1回复 待解决
HarmonyOS jsbridge HarmonyOS版本
90浏览 • 1回复 待解决
HarmonyOS LazyForEach
342浏览 • 1回复 待解决
HarmonyOS RotateOptions
20浏览 • 1回复 待解决
HarmonyOS encodeURIComponent
27浏览 • 1回复 待解决
HarmonyOS Tabs
34浏览 • 1回复 待解决
HarmonyOS floatingActionButton
21浏览 • 1回复 待解决
HarmonyOS HarmonyOS应用开发是否支持c++20
100浏览 • 1回复 待解决
HarmonyOS HarmonyOS社区组件问题
325浏览 • 1回复 待解决
HarmonyOS fileAccess使用
527浏览 • 1回复 待解决
HarmonyOS HMRouter使用?
155浏览 • 0回复 待解决
HarmonyOS 全局字体
62浏览 • 1回复 待解决
HarmonyOS Refresh + Web?
113浏览 • 0回复 待解决
HarmonyOS NodeContainer咨询
383浏览 • 1回复 待解决