美文网首页
RN KeyboardAwareScrollView andro

RN KeyboardAwareScrollView andro

作者: 名白 | 来源:发表于2018-07-10 17:31 被阅读0次

    问题: RN KeyboardAwareScrollView android 不滚动,或者大片空白。
    解决:
    1,MainActivity 内的 android:windowSoftInputMode="adjustResize" 的值改为adjustPan

    2,试着改一下 extraScrollHeight

    <KeyboardAwareScrollView
                         enableOnAndroid={true}
                         extraScrollHeight={-15}  //试着改
                    
                        keyboardShouldPersistTaps='handled'
                        style={{ backgroundColor: '#fff' }}
                        resetScrollToCoords={{ x: 0, y: 0 }}
                        contentContainerStyle={styles.container}//flex:1
                        scrollEnabled
                    >
    

    相关文章

      网友评论

          本文标题:RN KeyboardAwareScrollView andro

          本文链接:https://www.haomeiwen.com/subject/cgrqpftx.html