使用react-navigation更改状态栏颜色

时间:2017-06-02 10:10:30

标签: react-native react-navigation android-statusbar

我在我的应用中使用了来自react-navigation的DrawerNavigator。没有任何自定义,Android状态栏为蓝色,而不是黑色。

我试着做

StatusBar.setBackgroundColor('#000000');

但它只能工作几秒钟,然后又会变回蓝色。似乎我正在使用的东西将状态栏颜色设置为蓝色。但是,我试图删除所有依赖项并且只保留react-navigation,它仍然会发生,而react-navigation的文档对此没有任何说明。

如何使用react-navigation将状态栏颜色设置为黑色?

8 个答案:

答案 0 :(得分:6)

我认为react-navigationStatusBar之间没有任何冲突,但我认为您应该使用<StatusBar>组件而不是命令式API。很有可能这是由于重新渲染你的应用程序,它只是切换回默认值,并通过组件声明,确保它不会发生。

<StatusBar backgroundColor='blue' barStyle='light-content' />

每条路线甚至可以有多个,根据路径进行更改。如果您想根据用户并使用redux进行更改,请在连接的组件中声明并传递backgroundColor

答案 1 :(得分:3)

import React, {Component} from 'react';
import {Text, TouchableOpacity, View, StatusBar} from 'react-native';
import {StackNavigator} from 'react-navigation';
import Icon from 'react-native-vector-icons/MaterialIcons';
import styles from "../styles/Style";

class ProfileScreen extends Component {

    static navigationOptions = ({navigation}) => {
        return {
            headerLeft: (
                <TouchableOpacity onPress={() => {
                    navigation.navigate('DrawerOpen');
                }}>
                    <Icon name="menu" size={30} color="#fff" style={styles.burgerIcon}/>
                </TouchableOpacity>
            ),
            title: 'My Profile',
            headerRight: (
                <Icon name={'edit'} size={30} color={'#fff'} style={styles.headerRightIcon}/>
            ),
            headerTintColor: "#fff",
            headerStyle: {
                backgroundColor: '#8BC83D',
                height: 56,
                elevation: null
            }
        };
    };

    render() {
        return (
            <View style={styles.screenContainer}>

                <StatusBar
                    backgroundColor="#7CB236"
                    barStyle="light-content"
                />
                <Text style={styles.welcome}>
                    I amsecond reder
                </Text>
            </View>
        );
    }
}
const ProfileScreenList = StackNavigator(
    {
    ProfileScreenIndex: {screen: ProfileScreen},
}
);
export default ProfileScreenList

答案 2 :(得分:1)

就像Aperçu所说,react-navigation和StatusBar之间没有冲突。每个屏幕都应该能够在设备的状态栏上设置属性,并且createNavigationContainer中定义的容器应该获取状态更改的选项,并本机应用它们。尝试使用StatusBar来获取整个App。

const AppContent = StackNavigator({
  Home: { screen: HomeScreen },
  Secondary: { screen: SecondaryScreen },
});

const App = () =>
  <View style={{flex: 1}}>
    <StatusBar backgroundColor="blue" barStyle="light-content"/> 
    // style the bar. barStyle is text and icon color od status bar.
   <AppContent />
 </View>;

答案 3 :(得分:0)

您是否尝试过设置DrawerNavigator配置? Doc说contentOptions允许您自定义抽屉内容。

在您定义DrawerNavigator的文件中,可能是您的router.js文件。您应该将导航器创建为:

const MyApp = DrawerNavigator({
    Home: {
        screen: MyHomeScreen,
        contentOptions: {
            inactiveBackgroundColor: '#000000',
        }
   },
});

也许这个页面可以帮助您:DrawerNavigator

目前,您的抽屉肯定会在某些时候重新渲染,这就是颜色返回蓝色的原因。

答案 4 :(得分:0)

您可能要使用此插件navigationbar-react-native

1,安装插件

npm i navigationbar-react-native --save

2,使用

import React, { Component } from 'react';
import {
  AppRegistry,
  StyleSheet,
  Text,Image,
  View, 
  TouchableOpacity,
} from 'react-native';
import NavigationBar from 'navigationbar-react-native';
 
const ComponentLeft = () => {
  return(
    <View style={{ flex: 1, alignItems: 'flex-start'}} >
       <TouchableOpacity style={ {justifyContent:'center', flexDirection: 'row'}}>
        <Image 
          source={require('./img/ic_back.png')}
          style={{ resizeMode: 'contain', width: 20, height: 20, alignSelf: 'center' }}
        />
        <Text style={{ color: 'white', }}>Back Home</Text>
      </TouchableOpacity>
    </View>
  );
};
 
const ComponentCenter = () => {
  return(
    <View style={{ flex: 1, }}>
       <Image
        source={require('./img/ic_logo.png')}
        style={{resizeMode: 'contain', width: 200, height: 35, alignSelf: 'center' }}
      />
    </View>
  );
};
 
const ComponentRight = () => {
  return(
    <View style={{ flex: 1, alignItems: 'flex-end', }}>
      <TouchableOpacity>
        <Text style={{ color: 'white', }}> Right </Text>
      </TouchableOpacity>
    </View>
  );
};
 
class App extends Component {
  render() {
    return (
      <View style={styles.container}>
        <NavigationBar 
          componentLeft     = { () =>  {<ComponentLeft />   }
          componentCenter   = { () =>  {<ComponentCenter /> }
          componentRight    = { () =>  {<ComponentRight />  }
          navigationBarStyle= {{ backgroundColor: ''#215e79'' }}
          statusBarStyle    = {{ barStyle: 'light-content', backgroundColor: '#215e79' }}
        />
      </View>
    );
  }
}

答案 5 :(得分:0)

在@Balthazar的答案之上,如果您使用的是SafereaView,则可能需要在样式表中设置状态栏颜色,如下所示:

SafeArea: {
    flex: 1,
    backgroundColor: StatusBar.setBackgroundColor('black'),
    paddingTop: Platform.OS === "android" ? StatusBar.currentHeight : 0
 }

P.S。此代码还会在带有缺口的android设备中检测SafeAreaView。

答案 6 :(得分:0)

为了避免手动处理屏幕的安装和卸载,例如更新 redux 状态,你也可以使用 react 导航的 useIsFocused。

假设您希望路线中的单个屏幕具有深色主题的状态栏:

import { StatusBar, View } from 'react-native';
import { useIsFocused } from '@react-navigation/native';

export default function MyDarkScreen() {
    const isFocused = useIsFocused();
    return (
        <View>
            {
                isFocused &&
                <StatusBar
                    barStyle={'dark-content'}
                    translucent
                    backgroundColor="transparent"
                />
            }
            <SomeOtherComponent />
        </View>
    )
}

答案 7 :(得分:0)

在你的根组件中,你必须导入

<块引用>

状态栏

您可以按照以下代码操作。

import React from 'react';
import {Text, View, StatusBar} from 'react-native';


const Home = () => {
      return (
        <View style={{flex: 1, alignItems: 'center', justifyContent: 'center'}}>
           <StatusBar backgroundColor="#44A72C" barStyle="light-content" />
           <Text style={{fontFamily: 'UniNeueRegular-Italic'}}>Home Screen</Text>
        </View>
        );
      };
export default Home;

谢谢!