码迷,mamicode.com
首页 > 其他好文 > 详细

react-native 键盘遮挡输入框

时间:2019-08-09 15:14:13      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:androi   get   from   board   render   react   输入   遮挡输入框   ret   

Android上已经自动对键盘遮挡输入框做了处理,所以我们只需要关注ios。

1.首先引入 KeyboardAvoidingView

import { KeyboardAvoidingView } from 'react-native';

2.然后在页面的最外层加上 KeyboardAvoidingView

render(){
    return <KeyboardAvoidingView behavior={'padding'} style={{flex: 1}}>
        {/*具体页面内容*/}
    </KeyboardAvoidingView>
}

如果适配ios和Android,可以将页面提取出来

    getPageView = () => {
        //return 具体页面内容
    }
    getPlatformView = () => {
        if (Platform.OS === 'ios') {
            return <KeyboardAvoidingView behavior={'padding'} style={{flex: 1}}>
                    {this.getPageView()}
            </KeyboardAvoidingView>
        } else {
            return this.getPageView();
        }
    };

    render() {
        return this.getPlatformView();
    }

react-native 键盘遮挡输入框

标签:androi   get   from   board   render   react   输入   遮挡输入框   ret   

原文地址:https://www.cnblogs.com/bygw/p/11327141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!