1

我正在使用react-native-element创建一个按钮组,该按钮组嵌入了来自react-native-vector-icons 的图标

问题是当图标被触摸时,onPress 不会被触发

    constructor(props) {
      super(props);    
      this.state = { selectedIndex: 0 };   
      this.SetSelected = this.SetSelected.bind(this);
    }


    SetSelected(index) {
      this.setState({ selectedIndex: index });
    }

    return(
    <ButtonGroup
      selectedIndex={this.state.selectedIndex}
      onPress={this.SetSelected}
      selectedButtonStyle={{ backgroundColor: 'blue' }}
      buttons={[
        {
          element: () => (
            <Icon.Button
              name="slack"
              style={{ backgroundColor: 'white' }}
              color={'black'}
              size={30}
              title="Inbox"
            >
              <Text style={{ color: 'black', fontSize: 15, textAlignVertical: 'center', textAlign: 'center' }}                   
              >
                All
              </Text>
            </Icon.Button>
          ),
        })
4

2 回答 2

3

感谢凯尔·罗奇

原因是因为我使用的Icon.Button是可触摸的。因此,当我尝试点击更改 ButtonGroup 时,触摸事件将被捕获,Icon.Button而不是buttonGroup.

我应该使用Icon而不是Icon.Button.

于 2018-12-04T09:23:57.603 回答
1

试着让它成为一个函数。

onPress={() => {this.SetSelected()}}

如果它不起作用,请提供 this.SetSelected 函数。

于 2018-11-30T19:50:35.960 回答