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 HarmonyOS社区组件问题
135浏览 • 1回复 待解决
HarmonyOS LazyForEach
212浏览 • 1回复 待解决
HarmonyOS TabContent
356浏览 • 1回复 待解决
HarmonyOS AVPlayer XComponent
218浏览 • 1回复 待解决
Cronet适配HarmonyOS
758浏览 • 1回复 待解决
HarmonyOS没有IntentFilter
6233浏览 • 1回复 待解决
HarmonyOS setResponseData问题
232浏览 • 1回复 待解决
HarmonyOS fileAccess使用
342浏览 • 1回复 待解决
HarmonyOS NodeContainer咨询
194浏览 • 1回复 待解决
HarmonyOS Toggle问题
285浏览 • 0回复 待解决
HarmonyOS interface 问题
157浏览 • 1回复 待解决
HarmonyOS Drawer组件
113浏览 • 1回复 待解决
HarmonyOS Navigation组件
114浏览 • 1回复 待解决
HarmonyOS Hyperlink属性
293浏览 • 0回复 待解决
HarmonyOS gridcell问题
129浏览 • 1回复 待解决
HarmonyOS startAbility问题
250浏览 • 1回复 待解决
HarmonyOS CustomDialogController问题
205浏览 • 1回复 待解决
HarmonyOS应用更新demo
200浏览 • 1回复 待解决
HarmonyOS的appUI适配
190浏览 • 1回复 待解决
HarmonyOS AVPlayer的问题
307浏览 • 1回复 待解决
HarmonyOS 地图呈现问题
231浏览 • 1回复 待解决
HarmonyOS kit.MapKit
235浏览 • 1回复 待解决