Android 获取主题是不是暗黑主题,或者是不是深色主题

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

active 为true 就是深色主题

你可能感兴趣的:(Java,Android)