背景:我的背景是 Web 开发、ruby 和 javascript。我正在开发一个主要是 react-native 应用程序,所以很可能我错过了一些基本的东西。
我想要的是
android导航栏为白色,带有深色系统按钮,请参阅链接白色导航栏中的图像
我当前的代码
res/values/style.xml
<resources>
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:windowLightNavigationBar">true</item>
<item name="android:windowTranslucentNavigation">false</item>
<item name="android:navigationBarColor">#FFFFFF</item>
</style>
</resources>
正在发生的事情
背景和按钮是白色的。这对 UX 来说不是很好。
** 我试过的 **
这就是我现在所处的位置在 Android 上更改导航栏图标颜色
我尝试将 style.xml 放在一个values-v27
文件夹中。