scrollview can't scroll when focus textinput react native

后端 未结 5 845
执笔经年
执笔经年 2021-01-20 04:38

I have a TextInput inside a ScrollView.

The scroll isn\'t working when the TextInput is on focus. This problem is only affecting Android.

5条回答
  •  独厮守ぢ
    2021-01-20 05:28

    This is a very good example: http://blog.arjun.io/react-native/mobile/cross-platform/2016/04/01/handling-the-keyboard-in-react-native.html

    The thing that was really important for me was to add:

    android:windowSoftInputMode="adjustResize"

    in AndroidManifest.xml in order to focus the textInput

提交回复
热议问题