反应原生onStartShouldSetResponder参数不适用于AutoCompeletInput插件

时间:2018-09-10 08:55:58

标签: android react-native react-native-scrollview

我正在使用自动完成输入插件。 我已将此组件放置在Scrollview中。 其他行为也很好,例如使用我们的自定义设计在弹出窗口中显示建议列表。

引荐插件:-Plugin

但是 onStartShouldSetResponder {()=> true}无效。 因此,我无法滚动建议列表。

这是我实现的代码=>

<ScrollView keyboardShouldPersistTaps='always' style={[commonstyles.mainContainer,styles.mainContainer,{marginBottom:20}]}>
            <View style={{width:width-30,height:45}}>
            <Autocomplete
              autoCapitalize="none"
              autoCorrect={false}
              hideResults={false}
              containerStyle={{flex: 1,left: 10,position: 'absolute',right: 10,top: 0,zIndex: 1}}
              data={films.length === 1 && comp(query, films[0].name) ? [] : films}
              defaultValue={query}
              onChangeText={text => this.setState({ query: text })}
              placeholder="Select Contact"
              renderItem={({ id,name }) => (
                <TouchableOpacity onStartShouldSetResponder={()=>{return true;}} activeOpacity={1} onPress={() => this.setState({ query: name })}>
                  <Text style={{fontSize:Global.DESCRIPTION_FONT_SIZE,color:Global.APP_BLACK_COLOR,borderBottomWidth:0.5,borderColor:Global.APP_BLACK_COLOR,padding:5}}>
                    {id} {name}
                  </Text>
                </TouchableOpacity>
              )}
            />
            </View>

</Scrollview>
  • 如果我做错了事,请告诉我。
  • 我也无法理解onStartShouldSetResponder()函数的实现。
  • react native中的“建议自动完成”输入示例,其工作方式类似于Android AutoCompleteTexview组件。

1 个答案:

答案 0 :(得分:1)

scrollEnabled 参数添加到Scrollview。

尝试以下代码

<ScrollView scrollEnabled={this.state.enableScrollViewScroll} keyboardShouldPersistTaps='always' style={[commonstyles.mainContainer,styles.mainContainer,{marginBottom:20}]}>
    <View style={{width:width-30,height:45}}>
    <Autocomplete
      autoCapitalize="none"
      autoCorrect={false}
      hideResults={false}
      onStartShouldSetResponderCapture={() => {
         var self=this;
         this.setState({ enableScrollViewScroll: false });
         console.log("Here==>",self.state.enableScrollViewScroll);
      }}
      containerStyle={{flex: 1,left: 10,position: 'absolute',right: 10,top: 0,zIndex: 1}}
      data={films.length === 1 && comp(query, films[0].name) ? [] : films}
      defaultValue={query}
      onChangeText={text => this.setState({ query: text })}
      placeholder="Select Contact"
      renderItem={({ id,name }) => (
        <TouchableOpacity  activeOpacity={1} onPress={() => this.setState({ query: name,enableScrollViewScroll:true })}>
          <Text style=                {{fontSize:Global.DESCRIPTION_FONT_SIZE,color:Global.APP_BLACK_COLOR,borderBottomWidth:0.5,borderColor:Global.APP_BLACK_COLOR,padding:5}}>
        {id} {name}
          </Text>
        </TouchableOpacity>
      )}
    />
    </View>

</Scrollview>