Dark Mode: useColorScheme() always returns light on Android(暗模式:useColorScheme() 在 Android 上总是返回光)
问题描述
我正在尝试让深色模式工作,但它在 Android 上不起作用.它总是返回光".在 iOS 上运行良好.
I am trying to get Dark Mode to work and it doesn't work on Android. It always returns "light". On iOS it works fine.
import React from 'react';
import { useColorScheme } from "react-native";
export default function App() {
const theme = useColorScheme();
alert("your color scheme is: " + theme); // always returns "light" on Android
return null;
}
我正在使用 Expo SDK 42.
I am using Expo SDK 42.
我把 "userInterfaceStyle": "automatic"
放在我的 app.json
中,但没有任何区别.
I put "userInterfaceStyle": "automatic"
in my app.json
but it doesn't make a difference.
推荐答案
我想通了.仅仅将 "userInterfaceStyle": "automatic"
放在 app.json 根目录中是不够的,我还必须为 iOS 和 Android 单独定义它:
I figured it out. It was not enough to just put "userInterfaceStyle": "automatic"
in app.json root, I had to define it for iOS and Android individually too:
app.json:
{
"expo": {
"userInterfaceStyle": "automatic",
"ios": {
"userInterfaceStyle": "automatic"
},
"android": {
"userInterfaceStyle": "automatic"
}
}
}
这篇关于暗模式:useColorScheme() 在 Android 上总是返回光的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:暗模式:useColorScheme() 在 Android 上总是返回光


- Android - 拆分 Drawable 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01