• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# 触摸热区设置
2
3适用于支持通用点击事件、通用触摸事件、通用手势处理的组件。
4
5
6>  **说明:**
7>
8>  从API Version 8开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
9
10
11## 属性
12
13
14| 名称           | 参数类型                                                     | 描述                                                         |
15| -------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
16| responseRegion | Array&lt;[Rectangle](#rectangle对象说明)&gt;&nbsp;\|&nbsp;[Rectangle](#rectangle对象说明) | 设置一个或多个触摸热区,包括位置和大小。<br/>默认触摸热区为整个组件,默认值:<br/>{<br/>x:0,<br/>y:0,<br/>width:'100%',<br/>height:'100%'<br/>}<br/>从API version 9开始,该接口支持在ArkTS卡片中使用。 |
17
18
19## Rectangle对象说明
20
21从API version 9开始,该接口支持在ArkTS卡片中使用。
22
23| 名称        | 类型                       | 必填   | 描述                             |
24| ------ | ----------------------------- | -----| -------------------------------- |
25| x      | [Length](ts-types.md#length)  | 否   | 触摸点相对于组件左上角的x轴坐标。<br/>默认值:0vp |
26| y      | [Length](ts-types.md#length)  | 否   | 触摸点相对于组件左上角的y轴坐标。<br/>默认值:0vp |
27| width  | [Length](ts-types.md#length)  | 否   | 触摸热区的宽度。<br/>默认值:'100%' |
28| height | [Length](ts-types.md#length) | 否   | 触摸热区的高度。<br/>默认值:'100%' |
29
30  >  **说明:**
31  >
32  >  x和y可以设置正负值百分比。当x设置为'100%'时表示热区往右偏移组件本身宽度大小,当x设置为'-100%'时表示热区往左偏移组件本身宽度大小。当y设置为'100%'时表示热区往下偏移组件本身高度大小,当y设置为'-100%'时表示热区往上偏移组件本身高度大小。
33  >
34  >  width和height只能设置正值百分比。width:'100%'表示热区宽度设置为该组件本身的宽度。比如组件本身宽度是100vp,那么'100%'表示热区宽度也为100vp。height:'100%'表示热区高度设置为该组件本身的高度。
35  >
36  >  百分比相对于组件自身宽高进行计算。
37
38
39## 示例
40
41```ts
42// xxx.ets
43@Entry
44@Component
45struct TouchTargetExample {
46  @State text: string = ""
47
48  build() {
49    Column({ space: 20 }) {
50      Text("{x:0,y:0,width:'50%',height:'100%'}")
51      // 热区宽度为按钮的一半,点击右侧无响应
52      Button("button1")
53        .responseRegion({ x: 0, y: 0, width: '50%', height: '100%' })
54        .onClick(() => {
55          this.text = 'button1 clicked'
56        })
57
58      // 热区宽度为按钮的一半,且右移一个按钮宽度,点击button2右侧左边,点击事件生效
59      Text("{x:'100%',y:0,width:'50%',height:'100%'}")
60      Button("button2")
61        .responseRegion({ x: '100%', y: 0, width: '50%', height: '100%' })
62        .onClick(() => {
63          this.text = 'button2 clicked'
64        })
65      // 热区大小为整个按钮,且下移一个按钮高度,点击button3下方按钮大小区域,点击事件生效
66      Text("{x:0,y:'100%',width:'100%',height:'100%'}")
67      Button("button3")
68        .responseRegion({ x: 0, y: '100%', width: '100%', height: '100%' })
69        .onClick(() => {
70          this.text = 'button3 clicked'
71        })
72
73      Text(this.text).margin({ top: 50 })
74    }.width('100%').margin({ top: 10 })
75  }
76}
77```
78
79![touchtarget.gif](figures/touchtarget.gif)
80