其他分享
首页 > 其他分享> > android-returnKeyType =“下一个”在本机反应问题

android-returnKeyType =“下一个”在本机反应问题

作者:互联网

我在TextInput组件中使用returnKeyType =“ next”,但它的工作方式类似于returnKeyType =“ go”,而不是移至下一个textinput字段.

我们如何使用键盘上的“下一个”按钮从一个文本输入字段移动到下一个文本输入字段?

解决方法:

您需要使用如下参考将焦点设置在下一个文本字段上:

<View style={{flex:1}}>
    <TextInput style={{height:40}} 
        placeholder="First TextField Input"
        placeholderTextColor="#DCDCDC"
        returnKeyType="next"
        onSubmitEditing={()=>this.secondTextInput.focus()}/>
    <TextInput style={{height:40}} 
        placeholder="Second TextField Input"
        placeholderTextColor="#DCDCDC"
        returnKeyType="go"
        ref={(input)=>this.secondTextInput = input}/> 
</View>

标签:textinput,react-native,android
来源: https://codeday.me/bug/20191110/2013605.html