- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
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);
|
|
}
|