ArkUI在处理触屏变乱时,会在触屏变乱触发前进行按压点和组件地区的触摸测试,来收集必要响应触屏变乱的组件,再基于触摸测试结果分发相应的触屏变乱。在父节点,开辟者可以通过onChildTouchTest决定如何让子节点去做触摸测试,影响子组件的触摸测试,最终影响后续的触屏变乱分发。
分析
- 从API Version 11开始支持。后续版本如有新增内容,则采用上角标单独标记该内容的起始版本。
- onClick以及旋转、捏合手势经过自界说变乱分发之后大概会由于触摸热区没有掷中导致变乱不响应。
onChildTouchTest
onChildTouchTest(event: (value: Array) => TouchResult): T
当前组件可通过设置回调来自界说子节点如何去做触摸测试。
元服务API: 从API version 12开始,该接口支持在元服务中利用。
体系能力: SystemCapability.ArkUI.ArkUI.Full
参数:
参数名类型必填分析valueArray<[TouchTestInfo>]是包含子节点信息的数组。 返回值:
类型分析T返回当前组件。 分析
子节点信息数组中只包含定名节点的信息,即开辟者通过id属性设置了id的节点。
TouchTestInfo
当前按压点地点组件的坐标系、id和尺寸相关信息。
元服务API: 从API version 12开始,该接口支持在元服务中利用。
体系能力: SystemCapability.ArkUI.ArkUI.Full
名称类型描述windowXnumber按压点相对于窗口左上角的x轴坐标。windowYnumber按压点相对于窗口左上角的y轴坐标。parentXnumber按压点相对于父组件左上角的x轴坐标。parentYnumber按压点相对于父组件左上角的y轴坐标。xnumber按压点相对于子组件左上角的x轴坐标。ynumber按压点相对于子组件左上角的y轴坐标。rect[RectResult]子组件的巨细。[id]string通过id属性设置的组件id。 TouchResult
自界说变乱分发结果,开辟者通过返回结果来影响变乱分发。
元服务API: 从API version 12开始,该接口支持在元服务中利用。
体系能力: SystemCapability.ArkUI.ArkUI.Full
名称类型必填描述strategy[TouchTestStrategy]是变乱派发策略。idstring否通过id属性设置的组件id。当strategy为TouchTestStrategy.DEFAULT时,id是可选的;当strategy是TouchTestStrategy.FORWARD_COMPETITION或TouchTestStrategy.FORWARD时,id是必需的(如果没有返回id,则当成TouchTestStrategy.DEFAULT处理)。 TouchTestStrategy枚举分析
变乱派发策略。
卡片能力: 从API version 11开始,该接口支持在ArkTS卡片中利用。
元服务API: 从API version 12开始,该接口支持在元服务中利用。
体系能力: SystemCapability.ArkUI.ArkUI.Full
名称描述DEFAULT自界说分发不产生影响,体系按当前节点掷中状态分发变乱。FORWARD_COMPETITION应用指定分发变乱到某个子节点,其他兄弟节点是否分发变乱交由体系决定。FORWARD应用指定分发变乱到某个子节点,体系不再处理分发变乱到其他兄弟节点。 示例
示例1(设置变乱派发策略为FORWARD_COMPETITION)
该示例点击List下方空缺地区后拖动,可以或许拖动List滑动。点击Button按钮,Button会响应onClick变乱。
- // xxx.ets
- import { promptAction } from '@kit.ArkUI';
- @Entry
- @Component
- struct ListExample {
- private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
- @State text: string = 'Button'
- build() {
- Column() {
- List({ space: 12, initialIndex: 0 }) {
- ForEach(this.arr, (item: number) => {
- ListItem() {
- Text('Item ' + item)
- .width('100%')
- .height(56)
- .fontSize(16)
- .textAlign(TextAlign.Start)
- }.borderRadius(24)
- .backgroundColor(Color.White)
- .padding({ left: 12, right: 12 })
- }, (item: string) => item)
- }
- .listDirection(Axis.Vertical)
- .scrollBar(BarState.Off)
- .edgeEffect(EdgeEffect.Spring)
- .onScrollIndex((start: number, end: number) => {
- console.info('first' + start)
- console.info('last' + end)
- })
- .onDidScroll((scrollOffset: number, scrollState: ScrollState) => {
- console.info(`onScroll scrollState = ScrollState` + scrollState + `, scrollOffset = ` + scrollOffset)
- })
- .width('100%')
- .height('65%')
- .id('MyList')
- Button(this.text)
- .width(312)
- .height(40)
- .id('Mybutton')
- .fontSize(16)
- .fontWeight(FontWeight.Medium)
- .margin({ top: 80 })
- .onClick(() => {
- this.text = 'click the button'
- promptAction.showToast({ message: 'you click the button.', duration: 3000 })
- })
- }
- .width('100%')
- .height('100%')
- .backgroundColor(0xF1F3F5)
- .justifyContent(FlexAlign.End)
- .padding({ left: 12, right: 12, bottom: 24 })
- .onChildTouchTest((touchinfo) => {
- for (let info of touchinfo) {
- if (info.id == 'MyList') {
- return { id: info.id, strategy: TouchTestStrategy.FORWARD_COMPETITION }
- }
- }
- return { strategy: TouchTestStrategy.DEFAULT }
- })
- }
- }
复制代码
示例2(设置变乱派发策略为FORWARD)
点击List下方空缺地区后拖动,可以或许拖动List滑动。点击Button按钮,Button不会响应onClick变乱。
- // xxx.ets
- import { promptAction } from '@kit.ArkUI';
- @Entry
- @Component
- struct ListExample {
- private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
- @State text: string = 'Button'
- build() {
- Column() {
- List({ space: 12, initialIndex: 0 }) {
- ForEach(this.arr, (item: number) => {
- ListItem() {
- Text('Item ' + item)
- .width('100%')
- .height(56)
- .fontSize(16)
- .textAlign(TextAlign.Start)
- }.borderRadius(24)
- .backgroundColor(Color.White)
- .padding({ left: 12, right: 12 })
- }, (item: string) => item)
- }
- .listDirection(Axis.Vertical)
- .scrollBar(BarState.Off)
- .edgeEffect(EdgeEffect.Spring)
- .onScrollIndex((start: number, end: number) => {
- console.info('first' + start)
- console.info('last' + end)
- })
- .onDidScroll((scrollOffset: number, scrollState: ScrollState) => {
- console.info(`onScroll scrollState = ScrollState` + scrollState + `, scrollOffset = ` + scrollOffset)
- })
- .width('100%')
- .height('65%')
- .id('MyList')
- Button(this.text)
- .width(312)
- .height(40)
- .id('Mybutton')
- .fontSize(16)
- .fontWeight(FontWeight.Medium)
- .margin({ top: 80 })
- .onClick(() => {
- this.text = 'click the button'
- promptAction.showToast({ message: 'you click the button.', duration: 3000 })
- })
- }
- .width('100%')
- .height('100%')
- .backgroundColor(0xF1F3F5)
- .justifyContent(FlexAlign.End)
- .padding({ left: 12, right: 12, bottom: 24 })
- .onChildTouchTest((touchinfo) => {
- for (let info of touchinfo) {
- if (info.id == 'MyList') {
- return { id: info.id, strategy: TouchTestStrategy.FORWARD }
- }
- }
- return { strategy: TouchTestStrategy.DEFAULT }
- })
- }
- }
复制代码
示例3(设置变乱派发策略为DEFAULT)
点击List下方空缺地区后拖动,List不会滑动。点击Button按钮,Button会响应onClick变乱。
- // xxx.ets
- import { promptAction } from '@kit.ArkUI';
- @Entry
- @Component
- struct ListExample {
- private arr: number[] = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]
- @State text: string = 'Button'
- build() {
- Column() {
- List({ space: 12, initialIndex: 0 }) {
- ForEach(this.arr, (item: number) => {
- ListItem() {
- Text('Item ' + item)
- .width('100%')
- .height(56)
- .fontSize(16)
- .textAlign(TextAlign.Start)
- }.borderRadius(24)
- .backgroundColor(Color.White)
- .padding({ left: 12, right: 12 })
- }, (item: string) => item)
- }
- .listDirection(Axis.Vertical)
- .scrollBar(BarState.Off)
- .edgeEffect(EdgeEffect.Spring)
- .onScrollIndex((start: number, end: number) => {
- console.info('first' + start)
- console.info('last' + end)
- })
- .onDidScroll((scrollOffset: number, scrollState: ScrollState) => {
- console.info(`onScroll scrollState = ScrollState` + scrollState + `, scrollOffset = ` + scrollOffset)
- })
- .width('100%')
- .height('65%')
- .id('MyList')
- Button(this.text)
- .width(312)
- .height(40)
- .id('Mybutton')
- .fontSize(16)
- .fontWeight(FontWeight.Medium)
- .margin({ top: 80 })
- .onClick(() => {
- this.text = 'click the button'
- promptAction.showToast({ message: 'you click the button.', duration: 3000 })
- })
- }
- .width('100%')
- .height('100%')
- .backgroundColor(0xF1F3F5)
- .justifyContent(FlexAlign.End)
- .padding({ left: 12, right: 12, bottom: 24 })
- .onChildTouchTest((touchinfo) => {
- return { strategy: TouchTestStrategy.DEFAULT }
- })
- }
- }
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。 |