40 lines
1.2 KiB
Java
40 lines
1.2 KiB
Java
package o;
|
|
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.PorterDuff;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.widget.CheckedTextView;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ZXi {
|
|
public static void uT_(CheckedTextView checkedTextView, ColorStateList colorStateList) {
|
|
Sts.uW_(checkedTextView, colorStateList);
|
|
}
|
|
|
|
public static void uU_(CheckedTextView checkedTextView, PorterDuff.Mode mode) {
|
|
Sts.uX_(checkedTextView, mode);
|
|
}
|
|
|
|
public static Drawable uS_(CheckedTextView checkedTextView) {
|
|
return LWm.uV_(checkedTextView);
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
static class Sts {
|
|
static void uW_(CheckedTextView checkedTextView, ColorStateList colorStateList) {
|
|
checkedTextView.setCheckMarkTintList(colorStateList);
|
|
}
|
|
|
|
static void uX_(CheckedTextView checkedTextView, PorterDuff.Mode mode) {
|
|
checkedTextView.setCheckMarkTintMode(mode);
|
|
}
|
|
}
|
|
|
|
/* loaded from: classes.dex */
|
|
static class LWm {
|
|
static Drawable uV_(CheckedTextView checkedTextView) {
|
|
return checkedTextView.getCheckMarkDrawable();
|
|
}
|
|
}
|
|
}
|