键盘打开 React Native 时出现双击按钮问题

问题描述 投票:0回答:4

我知道已经有很多关于这个主题的疑问,我已经尝试了每一步,但仍然无法解决问题。

这是代码:

    render() {
    const {sContainer, sSearchBar} = styles;

    if (this.props.InviteState.objectForDeleteList){
      this.updateList(this.props.InviteState.objectForDeleteList);
    }
    return (
      <View style={styles.mainContainer}>
        <CustomNavBar
          onBackPress={() => this.props.navigation.goBack()}
        />
        <View
          style={sContainer}
        >
          <ScrollView keyboardShouldPersistTaps="always">
            <TextInput
              underlineColorAndroid={'transparent'}
              placeholder={'Search'}
              placeholderTextColor={'white'}
              selectionColor={Color.colorPrimaryDark}
              style={sSearchBar}
              onChangeText={(searchTerm) => this.setState({searchTerm})}
            />
          </ScrollView>
          {this.renderInviteUserList()}
        </View>
      </View>
    );
  }

renderInviteUserList() {
    if (this.props.InviteState.inviteUsers.length > 0) {
      return (
        <SearchableFlatlist
          searchProperty={'fullName'}
          searchTerm={this.state.searchTerm}
          data={this.props.InviteState.inviteUsers}
          containerStyle={styles.listStyle}
          renderItem={({item}) => this.renderItem(item)}
          keyExtractor={(item) => item.id}
        />
      );
    }
    return (
      <View style={styles.emptyListContainer}>
        <Text style={styles.noUserFoundText}>
          {this.props.InviteState.noInviteUserFound}
        </Text>
      </View>
    );
  }


renderItem(item) {
    return (
      this.state.userData && this.state.userData.id !== item.id
        ?
        <TouchableOpacity
          style={styles.itemContainer}
          onPress={() => this.onSelectUser(item)}>
          <View style={styles.itemSubContainer}>
            <Avatar
              medium
              rounded
              source={
                item.imageUrl === ''
                  ? require('../../assets/user_image.png')
                  : {uri: item.imageUrl}
              }
              onPress={() => console.log('Works!')}
              activeOpacity={0.7}
            />
            <View style={styles.userNameContainer}>
              <Text style={styles.userNameText} numberOfLines={1}>
                {item.fullName}
              </Text>
            </View>
            <CustomButton
              style={{
                flexWrap: 'wrap',
                alignSelf: 'flex-end',
                marginTop: 10,
                marginBottom: 10,
                width: 90,
              }}
              showIcon={false}
              btnText={'Add'}
              onPress={() => this.onClickSendInvitation(item)}
            />
          </View>
        </TouchableOpacity> : null
    );

  }

**我什至按照@Nirmalsinh **的建议尝试了以下代码:

<ScrollView keyboardShouldPersistTaps="always" style={sContainer}>
        <CustomNavBar
          onBackPress={() => this.props.navigation.goBack()}
        />
        <TextInput underlineColorAndroid={'transparent'}
          placeholder={'Search'}
          placeholderTextColor={'white'}
          selectionColor={Color.colorPrimaryDark}
          style={sSearchBar}
          onChangeText={(searchTerm) => this.setState({searchTerm})} />
        {this.renderInviteUserList()}
      </ScrollView>

我关注了这篇文章

https://medium.com/react-native-training/todays-react-native-tip-keyboard-issues-in-scrollview-8cfbeb92995b

我也尝试过使用 keyboardShouldPersistTaps=handled 但仍然,我必须在自定义按钮上点击两次才能执行操作。谁能告诉我代码中做错了什么?

谢谢。

react-native keyboard-events
4个回答
13
投票

您可以在 ScrollView 或 Scrollables(如 FlatList、SectionList 等)中使用

keyboardShouldPersistTaps='handled'
,并嵌入 TouchableWithoutFeedBack 来处理外部点击时关闭的情况。

<TouchableWithoutFeedback onPress={Keyboard.dismiss}>
 <ScrollView keyboardShouldPersistTaps='handled'>
   // Rest of the content.
 </ScrollView/>
</TouchableWithoutFeedback>

对于 FlatList 和 SectionList,您必须单独处理

KeyBoard.dismiss


11
投票

您需要在 keyboardShouldPersistTaps 中添加给定值 always 以允许用户在不关闭键盘的情况下点击。

keyboardShouldPersistTaps='always'

例如:

<ScrollView keyboardShouldPersistTaps='always'>
 // Put your component
</ScrollView>

注意:请将可点击组件放入 ScrollView 中。不然不行。


0
投票

enter image description here

请尝试这个,它对我有用,对你也有用,我希望它有帮助......


0
投票

你的问题终于解决了吗? Keyboardshouldpersist=始终处理或任何看起来被忽略的内容。 此外,我的文本输入不在滚动视图内,我确信有一种比将文本输入包装在无用的滚动视图中更好的方法(即使在这种情况下,它对我不起作用)。

© www.soinside.com 2019 - 2024. All rights reserved.