React-native键盘在文本输入中的android Samsung设备上没有逗号

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

我有一个带有React-nativeTextInputKeyboardAvoidingView应用。除了Android Samsung设备,尤其是Samsung A3,它在所有地方都运作良好。因为在此设备上键盘没有逗号出现,但是我需要在屏幕上使用它。

我已经尝试过this article中的步骤,已从autoCapitalize="none"组件中删除了TextInput,但是它对我不起作用。

[有人可以推荐我该如何解决。

 <TextInput
            style={textInput}
            placeholder={props.placeholder}
            underlineColorAndroid='transparent' editable={!props.disabled}
            keyboardType={keyboardType} 
            autoCorrect={false} selection={state.position}
            value={state.value} onChangeText={this._onChangeText}
            onFocus={this._onFocus} onBlur={this._onBlur}
            autoFocus={autoFocus}
          />

我有一个带有TextInput和KeyboardAvoidingView的React-native应用程序。除了Android Samsung设备,尤其是Samsung A3,它在所有地方都运作良好。因为在此设备上出现键盘...

android react-native keyboard samsung-mobile
1个回答
1
投票

如何使用

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