jimu-decompiled/sources/androidx/cardview/widget/RoundRectDrawable.java
2025-05-13 19:24:51 +02:00

181 lines
5.1 KiB
Java

package androidx.cardview.widget;
import android.content.res.ColorStateList;
import android.graphics.Canvas;
import android.graphics.ColorFilter;
import android.graphics.Outline;
import android.graphics.Paint;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.drawable.Drawable;
/* loaded from: classes.dex */
class RoundRectDrawable extends Drawable {
private float a;
private final RectF c;
private final Rect d;
private float e;
private ColorStateList h;
private PorterDuffColorFilter i;
private ColorStateList j;
private boolean f = false;
private boolean g = true;
private PorterDuff.Mode k = PorterDuff.Mode.SRC_IN;
private final Paint b = new Paint(5);
RoundRectDrawable(ColorStateList colorStateList, float f) {
this.a = f;
b(colorStateList);
this.c = new RectF();
this.d = new Rect();
}
private void b(ColorStateList colorStateList) {
if (colorStateList == null) {
colorStateList = ColorStateList.valueOf(0);
}
this.h = colorStateList;
this.b.setColor(this.h.getColorForState(getState(), this.h.getDefaultColor()));
}
void a(float f, boolean z, boolean z2) {
if (f == this.e && this.f == z && this.g == z2) {
return;
}
this.e = f;
this.f = z;
this.g = z2;
a((Rect) null);
invalidateSelf();
}
public float c() {
return this.a;
}
@Override // android.graphics.drawable.Drawable
public void draw(Canvas canvas) {
boolean z;
Paint paint = this.b;
if (this.i == null || paint.getColorFilter() != null) {
z = false;
} else {
paint.setColorFilter(this.i);
z = true;
}
RectF rectF = this.c;
float f = this.a;
canvas.drawRoundRect(rectF, f, f, paint);
if (z) {
paint.setColorFilter(null);
}
}
@Override // android.graphics.drawable.Drawable
public int getOpacity() {
return -3;
}
@Override // android.graphics.drawable.Drawable
public void getOutline(Outline outline) {
outline.setRoundRect(this.d, this.a);
}
@Override // android.graphics.drawable.Drawable
public boolean isStateful() {
ColorStateList colorStateList;
ColorStateList colorStateList2 = this.j;
return (colorStateList2 != null && colorStateList2.isStateful()) || ((colorStateList = this.h) != null && colorStateList.isStateful()) || super.isStateful();
}
@Override // android.graphics.drawable.Drawable
protected void onBoundsChange(Rect rect) {
super.onBoundsChange(rect);
a(rect);
}
@Override // android.graphics.drawable.Drawable
protected boolean onStateChange(int[] iArr) {
PorterDuff.Mode mode;
ColorStateList colorStateList = this.h;
int colorForState = colorStateList.getColorForState(iArr, colorStateList.getDefaultColor());
boolean z = colorForState != this.b.getColor();
if (z) {
this.b.setColor(colorForState);
}
ColorStateList colorStateList2 = this.j;
if (colorStateList2 == null || (mode = this.k) == null) {
return z;
}
this.i = a(colorStateList2, mode);
return true;
}
@Override // android.graphics.drawable.Drawable
public void setAlpha(int i) {
this.b.setAlpha(i);
}
@Override // android.graphics.drawable.Drawable
public void setColorFilter(ColorFilter colorFilter) {
this.b.setColorFilter(colorFilter);
}
@Override // android.graphics.drawable.Drawable
public void setTintList(ColorStateList colorStateList) {
this.j = colorStateList;
this.i = a(this.j, this.k);
invalidateSelf();
}
@Override // android.graphics.drawable.Drawable
public void setTintMode(PorterDuff.Mode mode) {
this.k = mode;
this.i = a(this.j, this.k);
invalidateSelf();
}
float b() {
return this.e;
}
private void a(Rect rect) {
if (rect == null) {
rect = getBounds();
}
this.c.set(rect.left, rect.top, rect.right, rect.bottom);
this.d.set(rect);
if (this.f) {
this.d.inset((int) Math.ceil(RoundRectDrawableWithShadow.a(this.e, this.a, this.g)), (int) Math.ceil(RoundRectDrawableWithShadow.b(this.e, this.a, this.g)));
this.c.set(this.d);
}
}
void a(float f) {
if (f == this.a) {
return;
}
this.a = f;
a((Rect) null);
invalidateSelf();
}
public void a(ColorStateList colorStateList) {
b(colorStateList);
invalidateSelf();
}
public ColorStateList a() {
return this.h;
}
private PorterDuffColorFilter a(ColorStateList colorStateList, PorterDuff.Mode mode) {
if (colorStateList == null || mode == null) {
return null;
}
return new PorterDuffColorFilter(colorStateList.getColorForState(getState(), 0), mode);
}
}