25 lines
661 B
Java
25 lines
661 B
Java
package U;
|
|
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.PorterDuff;
|
|
import android.widget.ImageView;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class f {
|
|
public static ColorStateList a(ImageView imageView) {
|
|
return imageView.getImageTintList();
|
|
}
|
|
|
|
public static PorterDuff.Mode b(ImageView imageView) {
|
|
return imageView.getImageTintMode();
|
|
}
|
|
|
|
public static void c(ImageView imageView, ColorStateList colorStateList) {
|
|
imageView.setImageTintList(colorStateList);
|
|
}
|
|
|
|
public static void d(ImageView imageView, PorterDuff.Mode mode) {
|
|
imageView.setImageTintMode(mode);
|
|
}
|
|
}
|