(Context context)
| 2267 | } |
| 2268 | |
| 2269 | static boolean isNight(Context context) { |
| 2270 | // https://developer.android.com/guide/topics/ui/look-and-feel/darktheme#configuration_changes |
| 2271 | int uiMode = context.getResources().getConfiguration().uiMode; |
| 2272 | Log.i("UI mode=0x" + Integer.toHexString(uiMode)); |
| 2273 | return ((uiMode & Configuration.UI_MODE_NIGHT_MASK) == Configuration.UI_MODE_NIGHT_YES); |
| 2274 | } |
| 2275 | |
| 2276 | static boolean isDarkTheme(Context context) { |
| 2277 | // R.attr.isLightTheme |
no test coverage detected