39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
package com.google.android.material.animation;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
import android.os.Build;
|
|
import android.util.Property;
|
|
import java.util.WeakHashMap;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class DrawableAlphaProperty extends Property<Drawable, Integer> {
|
|
public static final Property<Drawable, Integer> b = new DrawableAlphaProperty();
|
|
private final WeakHashMap<Drawable, Integer> a;
|
|
|
|
private DrawableAlphaProperty() {
|
|
super(Integer.class, "drawableAlphaCompat");
|
|
this.a = new WeakHashMap<>();
|
|
}
|
|
|
|
@Override // android.util.Property
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public Integer get(Drawable drawable) {
|
|
if (Build.VERSION.SDK_INT >= 19) {
|
|
return Integer.valueOf(drawable.getAlpha());
|
|
}
|
|
if (this.a.containsKey(drawable)) {
|
|
return this.a.get(drawable);
|
|
}
|
|
return 255;
|
|
}
|
|
|
|
@Override // android.util.Property
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public void set(Drawable drawable, Integer num) {
|
|
if (Build.VERSION.SDK_INT < 19) {
|
|
this.a.put(drawable, num);
|
|
}
|
|
drawable.setAlpha(num.intValue());
|
|
}
|
|
}
|