jimu-decompiled/sources/androidx/core/view/TintableBackgroundView.java
2025-05-13 19:24:51 +02:00

16 lines
421 B
Java

package androidx.core.view;
import android.content.res.ColorStateList;
import android.graphics.PorterDuff;
/* loaded from: classes.dex */
public interface TintableBackgroundView {
ColorStateList getSupportBackgroundTintList();
PorterDuff.Mode getSupportBackgroundTintMode();
void setSupportBackgroundTintList(ColorStateList colorStateList);
void setSupportBackgroundTintMode(PorterDuff.Mode mode);
}