- 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
246 lines
10 KiB
Java
246 lines
10 KiB
Java
package androidx.appcompat.widget;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.Bitmap;
|
|
import android.graphics.PorterDuff;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.net.Uri;
|
|
import android.util.AttributeSet;
|
|
import android.view.inspector.PropertyMapper;
|
|
import android.view.inspector.PropertyReader;
|
|
import android.widget.ImageButton;
|
|
import androidx.annotation.DrawableRes;
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
import androidx.annotation.RequiresApi;
|
|
import androidx.annotation.RestrictTo;
|
|
import androidx.appcompat.R;
|
|
import androidx.core.view.TintableBackgroundView;
|
|
import androidx.core.widget.TintableImageSourceView;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AppCompatImageButton extends ImageButton implements TintableBackgroundView, TintableImageSourceView {
|
|
private final AppCompatBackgroundHelper mBackgroundTintHelper;
|
|
private boolean mHasLevel;
|
|
private final AppCompatImageHelper mImageHelper;
|
|
|
|
@RequiresApi(29)
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
public final class InspectionCompanion implements android.view.inspector.InspectionCompanion {
|
|
private int mBackgroundTintId;
|
|
private int mBackgroundTintModeId;
|
|
private boolean mPropertiesMapped = false;
|
|
private int mTintId;
|
|
private int mTintModeId;
|
|
|
|
public void mapProperties(@NonNull PropertyMapper propertyMapper) {
|
|
int mapObject;
|
|
int mapObject2;
|
|
int mapObject3;
|
|
int mapObject4;
|
|
mapObject = propertyMapper.mapObject("backgroundTint", R.attr.backgroundTint);
|
|
this.mBackgroundTintId = mapObject;
|
|
mapObject2 = propertyMapper.mapObject("backgroundTintMode", R.attr.backgroundTintMode);
|
|
this.mBackgroundTintModeId = mapObject2;
|
|
mapObject3 = propertyMapper.mapObject("tint", R.attr.tint);
|
|
this.mTintId = mapObject3;
|
|
mapObject4 = propertyMapper.mapObject("tintMode", R.attr.tintMode);
|
|
this.mTintModeId = mapObject4;
|
|
this.mPropertiesMapped = true;
|
|
}
|
|
|
|
public void readProperties(@NonNull AppCompatImageButton appCompatImageButton, @NonNull PropertyReader propertyReader) {
|
|
if (!this.mPropertiesMapped) {
|
|
throw AppCompatAutoCompleteTextView$InspectionCompanion$$ExternalSyntheticApiModelOutline2.m();
|
|
}
|
|
propertyReader.readObject(this.mBackgroundTintId, appCompatImageButton.getBackgroundTintList());
|
|
propertyReader.readObject(this.mBackgroundTintModeId, appCompatImageButton.getBackgroundTintMode());
|
|
propertyReader.readObject(this.mTintId, appCompatImageButton.getImageTintList());
|
|
propertyReader.readObject(this.mTintModeId, appCompatImageButton.getImageTintMode());
|
|
}
|
|
}
|
|
|
|
public AppCompatImageButton(@NonNull Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public AppCompatImageButton(@NonNull Context context, @Nullable AttributeSet attributeSet) {
|
|
this(context, attributeSet, R.attr.imageButtonStyle);
|
|
}
|
|
|
|
public AppCompatImageButton(@NonNull Context context, @Nullable AttributeSet attributeSet, int i) {
|
|
super(TintContextWrapper.wrap(context), attributeSet, i);
|
|
this.mHasLevel = false;
|
|
ThemeUtils.checkAppCompatTheme(this, getContext());
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = new AppCompatBackgroundHelper(this);
|
|
this.mBackgroundTintHelper = appCompatBackgroundHelper;
|
|
appCompatBackgroundHelper.loadFromAttributes(attributeSet, i);
|
|
AppCompatImageHelper appCompatImageHelper = new AppCompatImageHelper(this);
|
|
this.mImageHelper = appCompatImageHelper;
|
|
appCompatImageHelper.loadFromAttributes(attributeSet, i);
|
|
}
|
|
|
|
@Override // android.widget.ImageView
|
|
public void setImageResource(@DrawableRes int i) {
|
|
this.mImageHelper.setImageResource(i);
|
|
}
|
|
|
|
@Override // android.widget.ImageView
|
|
public void setImageDrawable(@Nullable Drawable drawable) {
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null && drawable != null && !this.mHasLevel) {
|
|
appCompatImageHelper.obtainLevelFromDrawable(drawable);
|
|
}
|
|
super.setImageDrawable(drawable);
|
|
AppCompatImageHelper appCompatImageHelper2 = this.mImageHelper;
|
|
if (appCompatImageHelper2 != null) {
|
|
appCompatImageHelper2.applySupportImageTint();
|
|
if (this.mHasLevel) {
|
|
return;
|
|
}
|
|
this.mImageHelper.applyImageLevel();
|
|
}
|
|
}
|
|
|
|
@Override // android.widget.ImageView
|
|
public void setImageBitmap(Bitmap bitmap) {
|
|
super.setImageBitmap(bitmap);
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null) {
|
|
appCompatImageHelper.applySupportImageTint();
|
|
}
|
|
}
|
|
|
|
@Override // android.widget.ImageView
|
|
public void setImageURI(@Nullable Uri uri) {
|
|
super.setImageURI(uri);
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null) {
|
|
appCompatImageHelper.applySupportImageTint();
|
|
}
|
|
}
|
|
|
|
@Override // android.view.View
|
|
public void setBackgroundResource(@DrawableRes int i) {
|
|
super.setBackgroundResource(i);
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
appCompatBackgroundHelper.onSetBackgroundResource(i);
|
|
}
|
|
}
|
|
|
|
@Override // android.view.View
|
|
public void setBackgroundDrawable(@Nullable Drawable drawable) {
|
|
super.setBackgroundDrawable(drawable);
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
appCompatBackgroundHelper.onSetBackgroundDrawable(drawable);
|
|
}
|
|
}
|
|
|
|
@Override // androidx.core.view.TintableBackgroundView
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public void setSupportBackgroundTintList(@Nullable ColorStateList colorStateList) {
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
appCompatBackgroundHelper.setSupportBackgroundTintList(colorStateList);
|
|
}
|
|
}
|
|
|
|
@Override // androidx.core.view.TintableBackgroundView
|
|
@Nullable
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public ColorStateList getSupportBackgroundTintList() {
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
return appCompatBackgroundHelper.getSupportBackgroundTintList();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override // androidx.core.view.TintableBackgroundView
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public void setSupportBackgroundTintMode(@Nullable PorterDuff.Mode mode) {
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
appCompatBackgroundHelper.setSupportBackgroundTintMode(mode);
|
|
}
|
|
}
|
|
|
|
@Override // androidx.core.view.TintableBackgroundView
|
|
@Nullable
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public PorterDuff.Mode getSupportBackgroundTintMode() {
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
return appCompatBackgroundHelper.getSupportBackgroundTintMode();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableImageSourceView
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public void setSupportImageTintList(@Nullable ColorStateList colorStateList) {
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null) {
|
|
appCompatImageHelper.setSupportImageTintList(colorStateList);
|
|
}
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableImageSourceView
|
|
@Nullable
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public ColorStateList getSupportImageTintList() {
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null) {
|
|
return appCompatImageHelper.getSupportImageTintList();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableImageSourceView
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public void setSupportImageTintMode(@Nullable PorterDuff.Mode mode) {
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null) {
|
|
appCompatImageHelper.setSupportImageTintMode(mode);
|
|
}
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableImageSourceView
|
|
@Nullable
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public PorterDuff.Mode getSupportImageTintMode() {
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null) {
|
|
return appCompatImageHelper.getSupportImageTintMode();
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Override // android.widget.ImageView, android.view.View
|
|
public void drawableStateChanged() {
|
|
super.drawableStateChanged();
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
appCompatBackgroundHelper.applySupportBackgroundTint();
|
|
}
|
|
AppCompatImageHelper appCompatImageHelper = this.mImageHelper;
|
|
if (appCompatImageHelper != null) {
|
|
appCompatImageHelper.applySupportImageTint();
|
|
}
|
|
}
|
|
|
|
@Override // android.widget.ImageView, android.view.View
|
|
public boolean hasOverlappingRendering() {
|
|
return this.mImageHelper.hasOverlappingRendering() && super.hasOverlappingRendering();
|
|
}
|
|
|
|
@Override // android.widget.ImageView
|
|
public void setImageLevel(int i) {
|
|
super.setImageLevel(i);
|
|
this.mHasLevel = true;
|
|
}
|
|
}
|