使键盘表现为像<textinput>这样的文本区域

时间:2017-04-05 11:26:38

标签: react-native react-native-android react-native-ios

我有一个屏幕是这种屏幕。 (非常类似于在Gmail应用中撰写电子邮件)

<View>
    <View>
        Content X
    </View>
    <View>
        Content Y
    </View>
    <ScrollView>
        <TextInput/> {/*Text Area like TextInput*/}
    </ScrollView>
</View>

我面临的问题是,在编辑时,光标会设法进入键盘后面。在这种情况下,它并没有真正帮助。

我在Gmail应用中注意到的类似行为

This is the kind of screen i'm working on

This is the kind of behaviour i'm trying to replicate. The cursor in the gmail app never ends up behind the keyboard

1 个答案:

答案 0 :(得分:0)