如何使“概述”按钮透明

时间:2019-02-10 18:53:09

标签: android react-native expo

我注意到许多应用程序使概览按钮自动透明。 在本机中有一种方法可以做到这一点(在使之成为可能的设备中)? 我在说那些(在这种情况下是三星): enter image description here

1 个答案:

答案 0 :(得分:0)

原始来源:https://medium.com/@elliothesp/detecting-android-soft-navigation-keys-in-react-native-30163abd7113

为了使系统导航透明,您必须将其添加到android/app/src/main/res/values/styles.xml

<!-- Customize your theme here. -->
<item name="android:navigationBarColor">
  @android:color/transparent
</item>
<item name="android:windowTranslucentNavigation">
  true
</item>