react-native各种问题以及解决方案
问题描述:android开启手势功能,键盘弹起输入时,点击屏幕左边的位置会出现键盘收起又弹出的问题
解决方法1:关闭android手势功能
解决方法2:缩小手势的触发区域,可以通过设置
gestureResponseDistance实现
慎用overflow:"hidden"
问题描述 Textinput位于(FlatList,SectionList,ScrollView)的底部 Android键盘无法弹起
解决方法 第一步:FlatList 新增属性 removeClippedSubviews={Platform.OS === 'ios' ? undefined : false} 第二步:AndroidManifest.xml中的 MainActivity配置中 新增属性 android:windowSoftInputMode="adjustPan" eg:
解决办法: 新增属性 tintColor={(isFocused || Platform.OS === 'ios') ? undefined : '#F5F6F7'}
解决方法:需要修改原生TextInput。