Android 适配暗黑模式

在样式中添加

<style name="MyAppTheme">


.......
	<item name="android:forceDarkAllowed">true</item>
</style>

判定是否是暗黑主题

boolean isNight = (activity.getApplicationContext().getResources().getConfiguration().uiMode
                & Configuration.UI_MODE_NIGHT_YES) != 0;

猜你喜欢

转载自blog.csdn.net/yanwenyuan0304/article/details/115401208