mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 17:12:31 -06:00
93 lines
4.8 KiB
Java
93 lines
4.8 KiB
Java
package com.google.android.material.ripple;
|
|
|
|
import android.R;
|
|
import android.content.Context;
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.Color;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.graphics.drawable.GradientDrawable;
|
|
import android.graphics.drawable.InsetDrawable;
|
|
import android.graphics.drawable.RippleDrawable;
|
|
import android.util.StateSet;
|
|
import androidx.core.graphics.ColorUtils;
|
|
import com.google.android.material.color.MaterialColors;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class RippleUtils {
|
|
static final String TRANSPARENT_DEFAULT_COLOR_WARNING = "Use a non-transparent color for the default color as it will be used to finish ripple animations.";
|
|
public static final boolean USE_FRAMEWORK_RIPPLE = true;
|
|
private static final int[] PRESSED_STATE_SET = {R.attr.state_pressed};
|
|
private static final int[] HOVERED_FOCUSED_STATE_SET = {R.attr.state_hovered, R.attr.state_focused};
|
|
private static final int[] FOCUSED_STATE_SET = {R.attr.state_focused};
|
|
private static final int[] HOVERED_STATE_SET = {R.attr.state_hovered};
|
|
private static final int[] SELECTED_PRESSED_STATE_SET = {R.attr.state_selected, R.attr.state_pressed};
|
|
private static final int[] SELECTED_HOVERED_FOCUSED_STATE_SET = {R.attr.state_selected, R.attr.state_hovered, R.attr.state_focused};
|
|
private static final int[] SELECTED_FOCUSED_STATE_SET = {R.attr.state_selected, R.attr.state_focused};
|
|
private static final int[] SELECTED_HOVERED_STATE_SET = {R.attr.state_selected, R.attr.state_hovered};
|
|
private static final int[] SELECTED_STATE_SET = {R.attr.state_selected};
|
|
private static final int[] ENABLED_PRESSED_STATE_SET = {R.attr.state_enabled, R.attr.state_pressed};
|
|
static final String LOG_TAG = "RippleUtils";
|
|
|
|
private RippleUtils() {
|
|
}
|
|
|
|
public static ColorStateList convertToRippleDrawableColor(ColorStateList colorStateList) {
|
|
if (USE_FRAMEWORK_RIPPLE) {
|
|
int[] iArr = FOCUSED_STATE_SET;
|
|
return new ColorStateList(new int[][]{SELECTED_STATE_SET, iArr, StateSet.NOTHING}, new int[]{getColorForState(colorStateList, SELECTED_PRESSED_STATE_SET), getColorForState(colorStateList, iArr), getColorForState(colorStateList, PRESSED_STATE_SET)});
|
|
}
|
|
int[] iArr2 = SELECTED_PRESSED_STATE_SET;
|
|
int[] iArr3 = SELECTED_HOVERED_FOCUSED_STATE_SET;
|
|
int[] iArr4 = SELECTED_FOCUSED_STATE_SET;
|
|
int[] iArr5 = SELECTED_HOVERED_STATE_SET;
|
|
int[] iArr6 = PRESSED_STATE_SET;
|
|
int[] iArr7 = HOVERED_FOCUSED_STATE_SET;
|
|
int[] iArr8 = FOCUSED_STATE_SET;
|
|
int[] iArr9 = HOVERED_STATE_SET;
|
|
return new ColorStateList(new int[][]{iArr2, iArr3, iArr4, iArr5, SELECTED_STATE_SET, iArr6, iArr7, iArr8, iArr9, StateSet.NOTHING}, new int[]{getColorForState(colorStateList, iArr2), getColorForState(colorStateList, iArr3), getColorForState(colorStateList, iArr4), getColorForState(colorStateList, iArr5), 0, getColorForState(colorStateList, iArr6), getColorForState(colorStateList, iArr7), getColorForState(colorStateList, iArr8), getColorForState(colorStateList, iArr9), 0});
|
|
}
|
|
|
|
public static ColorStateList sanitizeRippleDrawableColor(ColorStateList colorStateList) {
|
|
return colorStateList != null ? colorStateList : ColorStateList.valueOf(0);
|
|
}
|
|
|
|
public static boolean shouldDrawRippleCompat(int[] iArr) {
|
|
boolean z = false;
|
|
boolean z2 = false;
|
|
for (int i : iArr) {
|
|
if (i == 16842910) {
|
|
z = true;
|
|
} else if (i == 16842908 || i == 16842919 || i == 16843623) {
|
|
z2 = true;
|
|
}
|
|
}
|
|
return z && z2;
|
|
}
|
|
|
|
public static Drawable createOvalRippleLollipop(Context context, int i) {
|
|
return RippleUtilsLollipop.createOvalRipple(context, i);
|
|
}
|
|
|
|
private static int getColorForState(ColorStateList colorStateList, int[] iArr) {
|
|
int colorForState = colorStateList != null ? colorStateList.getColorForState(iArr, colorStateList.getDefaultColor()) : 0;
|
|
return USE_FRAMEWORK_RIPPLE ? doubleAlpha(colorForState) : colorForState;
|
|
}
|
|
|
|
private static int doubleAlpha(int i) {
|
|
return ColorUtils.setAlphaComponent(i, Math.min(Color.alpha(i) * 2, 255));
|
|
}
|
|
|
|
/* loaded from: classes2.dex */
|
|
private static class RippleUtilsLollipop {
|
|
private RippleUtilsLollipop() {
|
|
}
|
|
|
|
/* JADX INFO: Access modifiers changed from: private */
|
|
public static Drawable createOvalRipple(Context context, int i) {
|
|
GradientDrawable gradientDrawable = new GradientDrawable();
|
|
gradientDrawable.setColor(-1);
|
|
gradientDrawable.setShape(1);
|
|
return new RippleDrawable(MaterialColors.getColorStateList(context, com.google.android.material.R.attr.colorControlHighlight, ColorStateList.valueOf(0)), null, new InsetDrawable((Drawable) gradientDrawable, i, i, i, i));
|
|
}
|
|
}
|
|
}
|