You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.1 KiB
59 lines
2.1 KiB
package p023h0;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.os.Build;
|
|
import android.util.Log;
|
|
import android.view.ViewConfiguration;
|
|
import java.lang.reflect.Method;
|
|
|
|
/* renamed from: h0.w3 */
|
|
/* loaded from: classes.dex */
|
|
public final class C0977w3 {
|
|
|
|
/* renamed from: a */
|
|
public static Method f2505a;
|
|
|
|
/* renamed from: h0.w3$a */
|
|
/* loaded from: classes.dex */
|
|
public static class C0978a {
|
|
/* renamed from: a */
|
|
public static int m2448a(ViewConfiguration viewConfiguration) {
|
|
int scaledHoverSlop;
|
|
scaledHoverSlop = viewConfiguration.getScaledHoverSlop();
|
|
return scaledHoverSlop;
|
|
}
|
|
|
|
/* renamed from: b */
|
|
public static boolean m2447b(ViewConfiguration viewConfiguration) {
|
|
boolean shouldShowMenuShortcutsWhenKeyboardPresent;
|
|
shouldShowMenuShortcutsWhenKeyboardPresent = viewConfiguration.shouldShowMenuShortcutsWhenKeyboardPresent();
|
|
return shouldShowMenuShortcutsWhenKeyboardPresent;
|
|
}
|
|
}
|
|
|
|
static {
|
|
if (Build.VERSION.SDK_INT == 25) {
|
|
try {
|
|
f2505a = ViewConfiguration.class.getDeclaredMethod("getScaledScrollFactor", new Class[0]);
|
|
} catch (Exception unused) {
|
|
Log.i("ViewConfigCompat", "Could not find method getScaledScrollFactor() on ViewConfiguration");
|
|
}
|
|
}
|
|
}
|
|
|
|
/* renamed from: a */
|
|
public static int m2450a(ViewConfiguration viewConfiguration) {
|
|
return Build.VERSION.SDK_INT >= 28 ? C0978a.m2448a(viewConfiguration) : viewConfiguration.getScaledTouchSlop() / 2;
|
|
}
|
|
|
|
/* renamed from: b */
|
|
public static boolean m2449b(ViewConfiguration viewConfiguration, Context context) {
|
|
if (Build.VERSION.SDK_INT >= 28) {
|
|
return C0978a.m2447b(viewConfiguration);
|
|
}
|
|
Resources resources = context.getResources();
|
|
int identifier = resources.getIdentifier("config_showMenuShortcutsWhenKeyboardPresent", "bool", "android");
|
|
return identifier != 0 && resources.getBoolean(identifier);
|
|
}
|
|
} |