【发布时间】:2018-09-19 14:34:06
【问题描述】:
我正在使用
文本输入
与
keyboardType = "数字键盘"
在 iOS 上运行正常,但在 Android 上显示普通键盘,如何让 android 显示数字键盘,并隐藏“建议”栏
<TextInput
ref="second"
style={this.state.pos > 0 ? styles.textInputStyle :
styles.textInputNormalStyle}
keyboardType = "number-pad"
maxLength={1}
value={this.state.secondVal}
onKeyPress={(event) => {this.onChange(1, event.nativeEvent.key); }}
/>
【问题讨论】:
标签: android ios react-native keyboard