gpt4 book ai didi

react-native - 使用 React Native 更改手机底部触摸颜色

转载 作者:行者123 更新时间:2023-12-04 08:24:43 26 4
gpt4 key购买 nike

如何在 React Native 中更改手机底部触摸的颜色。链接到图像。
enter image description here

最佳答案

导航到该目录:your_project/android/app/src/main/res/values .
会有styles.xml文件,打开它,会有类似的东西:

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000</item>
<item name="android:navigationBarColor">#000</item> // Add this line and change the color
</style>
然后去 your_project/android/build.gradle并更改 minSdkVersion 21 或更高。
buildscript {
ext {
buildToolsVersion = "29.0.2"
minSdkVersion = 21 // or higher
compileSdkVersion = 29
targetSdkVersion = 29
}
}
如果您正在使用 Expo,请尝试将此添加到 app.json文件:
{
"androidNavigationBar": {
"visible": true,

"barStyle": "light-content" or "dark-content",

"backgroundColor": color_here
}
}

关于react-native - 使用 React Native 更改手机底部触摸颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65325141/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com