美文网首页React Native 踩坑合集
「React Native」Android title 标题不居

「React Native」Android title 标题不居

作者: Android埋坑的艺术 | 来源:发表于2017-12-19 17:20 被阅读12次

    问题描述

    Navigation作导航时,使用

    static navigationOptions = ({navigation}) => ({
        //...
        headerTitleStyle: {
            alignSelf: 'center'
        },
    });
    

    可以使iOS的title在任何条件下居中显示

    但是在Android上就有点差异

    • 无headerLeft和headerRight时

      title居中无问题

    • 同时存在headerLeft和headerRight时

      title居中无问题

    • 只有headerLeft或headerRight时
      这时,标题会偏向一边

    以上headerLeft包括系统添加的返回箭头

    解决方案

    为headerLeft或headerRight添加一个空视图

    static navigationOptions = ({navigation}) => ({
        //...
        headerTitleStyle: {
            alignSelf: 'center'
        },
        //添加空视图占位
        headerRight:<View/>,
    });
    
    

    相关文章

      网友评论

        本文标题:「React Native」Android title 标题不居

        本文链接:https://www.haomeiwen.com/subject/jpriwxtx.html