That fuck shit the fascists are using
1package org.tm.archive.util;
2
3import android.content.Context;
4import android.provider.Settings;
5
6public final class AccessibilityUtil {
7
8 private AccessibilityUtil() {
9 }
10
11 public static boolean areAnimationsDisabled(Context context) {
12 return Settings.Global.getFloat(context.getContentResolver(), Settings.Global.ANIMATOR_DURATION_SCALE, 1) == 0f;
13 }
14}