React Native TextInput不会以正确的内容长度增加高度

时间:2018-07-14 16:11:17

标签: javascript react-native react-native-ios textinput

我正在尝试使用react native元素和react native来实现多行扩展文本输入,但是我似乎无法使其正常运行。该行为显示在以下屏幕截图中:

如您在此处看到的,文本明显超过一行,但是文本输入没有扩展。

enter image description here

每当我再输入几个字符时,它都会扩展一点,但会向下扩展到键盘中。

enter image description here

添加另一行不会扩展键盘:

enter image description here

直到我添加更多字符,直到最新的行变为文本输入宽度的一半,输入才会扩展

enter image description here

这是我用于文本输入的代码:

<View style={{flexDirection:'row', backgroundColor: 'transparent', height: Math.max(45, this.state.viewHeight)}}>
<Input
          containerStyle={{marginVertical: 0, width:300, marginLeft: 10}}
          inputStyle={[styles.textInput, {height: Math.max(35, this.state.height)}]}
          multiline
          enablesReturnKeyAutomatically={true}
          keyboardAppearance="dark"
          placeholder=""          
          onContentSizeChange={(event) => {
            if (this.state.height <= (35*6)){
            this.setState({
               height: event.nativeEvent.contentSize.height,
              viewHeight: event.nativeEvent.contentSize.height })
            }
          }}
          onChangeText={(message) => { this.setState({message})
        }}

这是我的文本输入样式的代码:

textInput: {
      paddingHorizontal: 12,
      width: 100,
      backgroundColor: '#F0F0F0',
      borderStyle: 'solid',
      marginLeft: -4,
      overflow: 'hidden',
      marginTop: 5,
      borderWidth: 1,
      borderColor: 'lightgrey',
      borderRadius: 25,
    },

似乎是在错误的时间触发了内容大小更改事件,我有什么办法可以将其设置为仅在新行是特定长度并向上扩展而不是向下扩展到键盘时才触发?

1 个答案:

答案 0 :(得分:1)

我终于让它工作了,我不得不更新到0.55 React Native sdk博览会,因为我认为他们在.54之后实现了自动增长输入。然后,由于RNE似乎没有实现自动增长,因此我不得不从使用react native元素输入切换到仅react native文本输入。最后,我不得不更改高度设置,如果像我一样height: {35}设置了一定的高度,它就不会增长,所以我必须对输入和输入的视图都使用minheight是为了让他们可以一起成长。