react-nativeandroid暗模式问题

IT技术 javascript java android reactjs react-native
2021-05-15 13:18:58

当我将移动主题从浅色更改为深色时,它会影响我的 React Native 应用程序的背景颜色。我只是希望它始终保持白色,但是当我将移动主题从浅色更改为深色时,它会从白色变为黑色。Android 版本 10 React 原生版本 0.61.5 React 版本 16.9.0

2个回答

将自定义背景添加到您在根目录下的整个容器中,您应该会很好。

styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
  }
})

您可以通过styles.xml在您的 android 文件夹中添加此行来禁用 android 中的强制暗模式

<item name="android:forceDarkAllowed">false</item>

像这样

<resources>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="android:forceDarkAllowed">false</item>
        <item name="android:textColor">#000000</item>
    </style>
</resources>