Android adaptation dark mode

In the style add

<style name="MyAppTheme">


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

Determine whether it is a dark theme

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

Guess you like

Origin blog.csdn.net/yanwenyuan0304/article/details/115401208
Recommended