RN笔记 - Android端StatusBar设置

1、RN 安卓端设置StatusBar的样式
   {Platform.OS === "android" ? (
       
    ) : null}
  • default:黑色文字(默认) => dark-content
  • light-content:白色文字
2、Android状态栏高度
// Android状态栏高度
const AndroidStatusBarHeight =
  Platform.OS === "android" ? StatusBar.currentHeight : 0;
3、动态设置Android端StatusBar,具体代码如下:
  componentDidMount = () => {
    if (Platform.OS === "android") {
      StatusBar.setBarStyle("dark-content");
      StatusBar.setBackgroundColor("#FFFFFF");
      StatusBar.setTranslucent(false);
    }
  };

render() {
    return (
      
        {Platform.OS === "android" ? (
          
        ) : null}

        {this.renderNavBar()}
        {this.renderScrollView()}
      
    );
  }

你可能感兴趣的:(RN笔记 - Android端StatusBar设置)