问题陈述与this question
类似但我正在寻找一些指针来实现与react-native相同的。
我正在构建一个聊天窗口(如iMessage,whatsapp),其中消息(ListView)带有包含TextInput的粘性页脚。
我能够获得一个粘性页脚,但是当有人尝试在页脚中使用TextInput输入文本时,键盘会隐藏TextInput。我尝试了this post中提到的方法,但由于上面存在ListView,似乎没有一种方法可以工作。
以下是我当前的布局代码:
<View style={styles.container}>
<ListView
automaticallyAdjustContentInsets={false}
keyboardDismissMode="on-drag"
keyboardShouldPersistTaps={true}
showsVerticalScrollIndicator={false}
/>
<View style={styles.textContainer}>
<TextInput/>
</View>
</View>