This documentation is available as Markdown for AI agents and LLMs. See the full Markdown index or append .md to any documentation URL.

颜色主题

编辑页面

了解如何在你的应用中支持亮色和暗色模式。


应用程序通常支持浅色和深色配色方案。以下是在 Expo 项目中同时支持这两种模式的示例:

配置

要配置支持的外观样式,可以在项目的 应用配置 中使用 userInterfaceStyle 属性。默认情况下,使用默认模板创建新项目时,此属性会设置为 automatic

以下是一个配置示例:

app.json
{ "expo": { "userInterfaceStyle": "automatic" } }

你还可以通过将 android.userInterfaceStyleios.userInterfaceStyle 设置为首选值,为特定平台配置 userInterfaceStyle 属性。

创建开发构建时,必须安装 expo-system-ui 才能支持 Android 外观样式。否则,userInterfaceStyle 属性将被忽略。

Terminal
npx expo install expo-system-ui

如果项目配置不正确且未安装 expo-system-ui,终端中将显示以下警告:

Terminal
» android: userInterfaceStyle: 在项目中安装 expo-system-ui 以启用此功能。

你还可以使用以下命令检查项目配置是否不正确:

Terminal
npx expo config --type introspect
正在使用现有的 React Native 项目?

Android

确保在 AndroidManifest.xml 中的 MainActivity(以及任何需要此行为的其他 activity)上包含 uiMode 标志:

<activity android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode">

MainActivity.java 中实现 onConfigurationChanged 方法:

import android.content.Intent; import android.content.res.Configuration; public class MainActivity extends ReactActivity { %%placeholder-start%%... %%placeholder-end%% @Override public void onConfigurationChanged(Configuration newConfig) { super.onConfigurationChanged(newConfig); Intent intent = new Intent("onConfigurationChanged"); intent.putExtra("newConfig", newConfig); sendBroadcast(intent); } %%placeholder-start%%... %%placeholder-end%% }

iOS

你可以在应用的 Info.plist 中使用 UIUserInterfaceStyle 键来配置支持的样式。使用 Automatic 可同时支持浅色和深色模式。

支持的外观样式

userInterfaceStyle 属性支持以下值:

  • automatic:遵循系统外观设置,并在用户进行任何更改时通知你。
  • light:限制应用仅支持浅色主题。
  • dark:限制应用仅支持深色主题。

检测配色方案

要在项目中检测配色方案,请使用 react-native 中的 AppearanceuseColorScheme

src/app/index.tsx
import { Appearance, useColorScheme } from 'react-native';

然后,你可以像下面这样使用 useColorScheme() 钩子:

src/app/index.tsx
function MyComponent() { let colorScheme = useColorScheme(); if (colorScheme === 'dark') { // 渲染一些深色内容 } else { // 渲染一些浅色内容 } }

在某些情况下,你可能会发现通过 Appearance.getColorScheme() 获取当前配色方案,或者使用 Appearance.addChangeListener() 监听变化 会很有帮助。

其他信息

最小示例

useColorScheme 示例
import { Text, StyleSheet, View, useColorScheme } from 'react-native'; import { StatusBar } from 'expo-status-bar'; export default function App() { const colorScheme = useColorScheme(); const themeTextStyle = colorScheme === 'light' ? styles.lightThemeText : styles.darkThemeText; const themeContainerStyle = colorScheme === 'light' ? styles.lightContainer : styles.darkContainer; return ( <View style={[styles.container, themeContainerStyle]}> <Text style={[styles.text, themeTextStyle]}>配色方案:{colorScheme}</Text> <StatusBar /> </View> ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, text: { fontSize: 20, }, lightContainer: { backgroundColor: '#d0d0c0', }, darkContainer: { backgroundColor: '#242c40', }, lightThemeText: { color: '#242c40', }, darkThemeText: { color: '#d0d0c0', }, });

提示

在开发项目时,你可以使用以下快捷键更改模拟器或设备的外观:

  • 如果使用 Android 模拟器,你可以运行 adb shell "cmd uimode night yes" 来启用深色模式,运行 adb shell "cmd uimode night no" 来禁用深色模式。
  • 如果使用实体 Android 设备或 Android 模拟器,你可以在设备设置中切换系统深色模式设置。
  • 如果在本地使用 iOS 模拟器,你可以使用 Cmd ⌘ + Shift + A 快捷键在浅色和深色模式之间切换。