1

我们在我们的应用程序中使用了view pagerreact-native-community/react-native-viewpager),每个页面都有 3 个部分,所有 3 个部分都是可点击的,为了使其可点击,我们正在使用TouchableHighlight

因此,每当我通过滑动更改页面时。如果我的滑动触摸在里面TouchableHighlightIOS它就会把它当作点击,否则android它工作正常。

4

1 回答 1

1

为像我这样的其他用户提供帮助。

该库开发人员的回答。

嘿,您可以使用 onPageScrollStateChanged 方法来阻止按钮交互。

switch(pageScrollState){
   case "idle": enableButton();
   default: disableButton(); 
}

或者我已经使用了这种方法。

    this.state = {
            shouldEnableClick: true,
        };

    pageScroll = (event) => {
        draggingValue = event.nativeEvent.offset
        isNotStill = (draggingValue == 0 || draggingValue == 1) ? true : false
        {Platform.OS == 'ios' && this.changeValue(isNotStill)}
    }

    changeValue(isNotStill) {
        if (this.state.shouldEnableClick !== isNotStill) {
            this.setState({ shouldEnableClick: isNotStill })
        }
    }

在组件中我使用它就像

let enableCLick = this.state.shouldEnableClick
let clickAction = () => this.myAction()

<TouchableHighlight
      onPress={enableCLick && clickAction}/>
于 2019-12-06T10:41:49.863 回答