「React Native」Android title 标题不居中问题

问题描述

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/>,
});

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容