React-native如何在textinput上移动屏幕

时间:2015-05-30 13:25:01

标签: react-native

我有一个使用react-native创建的登录屏幕。

当用户输入textInput时,如何将屏幕移开?

我是否会收听onFocus()事件并使用css样式来更改视图的样式?

8 个答案:

答案 0 :(得分:13)

2017年(RN 0.43)有一个特殊的组成部分:KeyboardAvoidingView

答案 1 :(得分:6)

您可以使用ScrollView来控制屏幕的上下移动。只要用户没有关注任何TextInput,您就可以disable scroll。在焦点上,只需使用Content Offset道具向上移动滚动视图。

<TextInput
    onFocus={this.textInputFocused.bind(this)}
  />

textInputFocused() {
//do your stuff here. scroll screen up
}

希望它有所帮助!

答案 2 :(得分:5)

Night Fury的回答非常好,虽然不会对ScrollView的contentOffset大惊小怪,我会使用ScrollResponder

render() {
  return (
    <ScrollView ref="myScrollView">
      <TextInput
        ref="myInput"
        onFocus={this._scrollToInput.bind(this)}
      />
    </ScrollView>
  );
}

_scrollToInput {
  const scrollResponder = this.refs.myScrollView.getScrollResponder();
  const inputHandle = React.findNodeHandle(this.refs.myInput)

  scrollResponder.scrollResponderScrollNativeHandleToKeyboard(
    inputHandle, // The TextInput node handle
    0, // The scroll view's bottom "contentInset" (default 0)
    true // Prevent negative scrolling
  );
}

请参阅方法定义:scrollResponderScrollNativeHandleToKeyboard

答案 3 :(得分:1)

这个package做了一个greate工作,介绍了一个KeyboardAwareScrollView组件,该组件向上滚动视图,使输入与键盘匹配,然后向下滚动。

答案 4 :(得分:1)

import {KeyboardAvoidingView} from 'react-native';

<KeyboardAvoidingView style={styles.container} behavior="padding" enabled>

    <Text style={{height: 100, marginTop: 30}}> test text before input</Text>
    <Text style={{height: 100, marginTop: 30}}> test text before input</Text>
    <Text style={{height: 100, marginTop: 30}}> test text before input</Text>
    <Text style={{height: 100, marginTop: 30}}> test text before input</Text>
    <Text style={{height: 100, marginTop: 30}}> test text before input</Text>

    <TextInput
        style={{height: 40, borderColor: 'gray', borderWidth: 1}}
        onChangeText={(text) => this.setState({text})}
        value={this.state.text}
    />

    <Text style={{height: 100, marginTop: 20}}>1 test text after input</Text>
    <Text style={{height: 100, marginTop: 20}}>2 test text after input</Text>
    <Text style={{height: 100, marginTop: 20}}>3 test text after input</Text>
    <Text style={{height: 100, marginTop: 20}}>4 test text after input</Text>
    <Text style={{height: 100, marginTop: 20}}>5 test text after input</Text>

</KeyboardAvoidingView>

零食投放: https://snack.expo.io/H1BE5ZoXV

答案 5 :(得分:0)

另一种解决方案,使用RN 0.2,这次不是压缩它滚动的内容。

 inputFocused: function(ref) {
   this._scroll(ref, 75);
 },

 inputBlurred: function(ref) {
   this._scroll(ref, 0);
 },

 _scroll: function(ref, offset) {
   setTimeout(() => {
     var scrollResponder = this.refs.myScrollView.getScrollResponder();
     scrollResponder.scrollResponderScrollNativeHandleToKeyboard(
                React.findNodeHandle(this.refs[ref]),
                offset,
                true
            );
     });
  },

...

render: function() {
  return <View style={{flex: 1}}> 
    <ScrollView ref="myScrollView" keyboardDismissMode='interactive' contentContainerStyle={{flex: 1}}>
      <TextInput
        ref="myInput"
        onFocus={this.inputFocused.bind(this, 'myInput')}
        onBlur={this.inputBlurred.bind(this, 'myInput')} />
    </ScrollView>
  </View>
}

答案 6 :(得分:0)

这是一个垃圾射击,以获得ScrollView的本机键盘识别功能。对于我的Android应用程序,它在一个屏幕上完美地工作,几乎与另一个屏幕无法正常工作。在iOS上,它只是不起作用。这就是我的工作:

import { Keyboard, ScrollView, StyleSheet, View } from 'react-native';

this.state = {
    filler: false,
}

componentWillMount() {
    this.keyboardDidShowListener = Keyboard.addListener('keyboardDidShow', this._keyboardDidShow.bind(this));
    this.keyboardDidHideListener = Keyboard.addListener('keyboardDidHide', this._keyboardDidHide.bind(this));
}

componentWillUnmount() {
    this.keyboardDidShowListener.remove();
    this.keyboardDidHideListener.remove();
}

_keyboardDidShow() {
    this.setState({filler: true})
    setTimeout(() => this.vertical && this.vertical.scrollToEnd({animated: true}), 0);
}

_keyboardDidHide() {
    this.setState({filler: false})
}


...
return (
  <ScrollView ref={ref => this.vertical = ref}>
    <TextInput/>
    { this.state.filler ? <View style={styles.filler}/> : null }
  </ScrollView>
)

styles.filler = {
    height: 'Keyboard Height'
}

注意:这可能只适用于<TextInput/>位于屏幕底部的情况。

答案 7 :(得分:0)

尝试为TextInput设置multiline={true}属性。它对我有用。