12 lines
310 B
Java
12 lines
310 B
Java
package androidx.core.widget;
|
|
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.PorterDuff;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface TintableCompoundButton {
|
|
void setSupportButtonTintList(ColorStateList colorStateList);
|
|
|
|
void setSupportButtonTintMode(PorterDuff.Mode mode);
|
|
}
|