react-native 状态栏沉浸式问题

react-native 状态栏沉浸式问题

目的:防止状态栏无缘无故从 沉浸式 变成 非沉浸式 (给自己的笔记)

遇到的问题

  1. 应用在后台长时间运行突然进入—(沉浸式的状态栏 —自动—> 没有沉浸式)
  2. 从通知栏进入的应用—(沉浸式的状态栏 —自动—> 没有沉浸式)

解决方

android\app\src\main\res\values\styles.xml

<resources>
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        "android:windowIsTranslucent">true
         
        "android:windowTranslucentStatus">true
        
        "android:navigationBarColor">@color/status_bar_color
        "android:statusBarColor">@color/status_bar_color
    style>
  <style name="SplashScreenTheme" parent="SplashScreen_SplashTheme">
      "colorPrimaryDark">@color/status_bar_color
      "android:navigationBarColor">@color/status_bar_color
      "android:statusBarColor">@color/status_bar_color
      "android:windowIsTranslucent">true
  style>
resources>

你可能感兴趣的:(react-native)