- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
19 lines
506 B
Java
19 lines
506 B
Java
package androidx.core.view;
|
|
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.PorterDuff;
|
|
import androidx.annotation.Nullable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface TintableBackgroundView {
|
|
@Nullable
|
|
ColorStateList getSupportBackgroundTintList();
|
|
|
|
@Nullable
|
|
PorterDuff.Mode getSupportBackgroundTintMode();
|
|
|
|
void setSupportBackgroundTintList(@Nullable ColorStateList colorStateList);
|
|
|
|
void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode mode);
|
|
}
|