Android gets the theme whether it is a dark theme or a dark theme

final boolean active = (getApplicationContext().getResources().getConfiguration().uiMode
                & Configuration.UI_MODE_NIGHT_YES)!= 0;

active is true, the dark theme

Guess you like

Origin blog.csdn.net/yanwenyuan0304/article/details/108146567