zoukankan      html  css  js  c++  java
  • [React Native]高度自增长的TextInput组件

    之前我们学习了从零学React Native之11 TextInput了解了TextInput相关的属性。

    在开发中,我们有时候有这样的需求, 希望输入区域的高度随着输入内容的长度而增长, 如下:
    这里写图片描述
    这时候我们需要自定义一个组件:
    在项目中创建AutoExpandingTextInput.js

    import React, {Component} from 'react';
    import {AppRegistry, TextInput, StyleSheet} from 'react-native';
    
    export default class AutoExpandingTextInput extends Component {
        // 构造
        constructor(props) {
            super(props);
            // 初始状态
            this.state = {
                text: '',
                height: 0
            };
            this.onChange = this.onChange.bind(this);
        }
    
        onChange(event) {
            console.log(event.nativeEvent);
            this.setState({
                text: event.nativeEvent.text,
                height:event.nativeEvent.contentSize.height
            });
        }
        onContentSizeChange(params){
            console.log(params);
        }
        render() {
            return (
                <TextInput {...this.props}  //将组件定义的属性交给TextInput
                    multiline={true}
                    onChange={this.onChange}
                    onContentSizeChange={this.onContentSizeChange}
                    style={[styles.textInputStyle,{height:Math.max(35,this.state.height)}]}
                    value={this.state.text}
                />
            );
        }
    }
    
    const styles = StyleSheet.create({
        textInputStyle: { //文本输入组件样式
             300,
            height: 30,
            fontSize: 20,
            paddingTop: 0,
            paddingBottom: 0,
            backgroundColor: "grey"
        }
    });

    在多行输入(multiline={true})的时候,可以通过onChange回调函数,获取内容的高度event.nativeEvent.contentSize.height,然后修改内容的高度。

    接下来修改index.ios.js或者index.android.js 如下:

    import AutoExpandingTextInput from './AutoExpandingTextInput';
    
    class AwesomeProject extends Component {
        _onChangeText(newText) {
            console.log('inputed text:' + newText);
        }
    
        render() {
            return (
                <View style={styles.container}>
                    <AutoExpandingTextInput
                        style={styles.textInputStyle}
                        onChangeText={this._onChangeText}
                    />
                </View>
            );
        }
    }
    
    const styles = StyleSheet.create({
        container: {
            flex: 1,
            backgroundColor: '#F5FCFF',
            borderWidth: 1,
            justifyContent: 'center',
            alignItems: 'center'
        },
        textInputStyle: { //文本输入组件样式
             300,
            height: 50,
            fontSize: 20,
            paddingTop: 0,
            paddingBottom: 0,
            backgroundColor: "grey"
        }
    });

    当然我们知道在IOS端TextInput/Text组件默认不会水平居中的,需要在外层额外嵌套一层View,可以参考从零学React Native之10Text
    运行结果:

    这里写图片描述

    更多精彩请关注微信公众账号likeDev
    这里写图片描述

  • 相关阅读:
    Linux下部署svn服务
    eclipse3.3.2在CentOS5.4下启动时崩溃的解决方法
    Cassandra配置
    Hadoop系列相关优秀网站收集
    ul li 制作导航栏 程序员
    一.Java访问权限饰词(access specifiers) 程序员
    Java程序员应该了解的10个面向对象设计原则 程序员
    MyEclipse里更改字体大小和快捷建的设置 程序员
    JFileChooser 为用户选择文件提供了一种简单的机制 程序员
    JavaScript时间函数总结 程序员
  • 原文地址:https://www.cnblogs.com/hehe520/p/6329878.html
Copyright © 2011-2022 走看看