使用TextInput反应Native粘性页脚

时间:2015-10-08 09:59:02

标签: ios react-native

问题陈述与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>

0 个答案:

没有答案