- 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
229 lines
10 KiB
Java
229 lines
10 KiB
Java
package androidx.appcompat.widget;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.ColorStateList;
|
|
import android.graphics.PorterDuff;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.text.InputFilter;
|
|
import android.util.AttributeSet;
|
|
import android.view.inspector.PropertyMapper;
|
|
import android.view.inspector.PropertyReader;
|
|
import android.widget.ToggleButton;
|
|
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.TintableCompoundDrawablesView;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AppCompatToggleButton extends ToggleButton implements TintableBackgroundView, EmojiCompatConfigurationView, TintableCompoundDrawablesView {
|
|
private AppCompatEmojiTextHelper mAppCompatEmojiTextHelper;
|
|
private final AppCompatBackgroundHelper mBackgroundTintHelper;
|
|
private final AppCompatTextHelper mTextHelper;
|
|
|
|
@RequiresApi(29)
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY})
|
|
public final class InspectionCompanion implements android.view.inspector.InspectionCompanion {
|
|
private int mBackgroundTintId;
|
|
private int mBackgroundTintModeId;
|
|
private int mDrawableTintId;
|
|
private int mDrawableTintModeId;
|
|
private boolean mPropertiesMapped = false;
|
|
|
|
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("drawableTint", R.attr.drawableTint);
|
|
this.mDrawableTintId = mapObject3;
|
|
mapObject4 = propertyMapper.mapObject("drawableTintMode", R.attr.drawableTintMode);
|
|
this.mDrawableTintModeId = mapObject4;
|
|
this.mPropertiesMapped = true;
|
|
}
|
|
|
|
public void readProperties(@NonNull AppCompatToggleButton appCompatToggleButton, @NonNull PropertyReader propertyReader) {
|
|
if (!this.mPropertiesMapped) {
|
|
throw AppCompatAutoCompleteTextView$InspectionCompanion$$ExternalSyntheticApiModelOutline2.m();
|
|
}
|
|
propertyReader.readObject(this.mBackgroundTintId, appCompatToggleButton.getBackgroundTintList());
|
|
propertyReader.readObject(this.mBackgroundTintModeId, appCompatToggleButton.getBackgroundTintMode());
|
|
propertyReader.readObject(this.mDrawableTintId, appCompatToggleButton.getCompoundDrawableTintList());
|
|
propertyReader.readObject(this.mDrawableTintModeId, appCompatToggleButton.getCompoundDrawableTintMode());
|
|
}
|
|
}
|
|
|
|
public AppCompatToggleButton(@NonNull Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public AppCompatToggleButton(@NonNull Context context, @Nullable AttributeSet attributeSet) {
|
|
this(context, attributeSet, android.R.attr.buttonStyleToggle);
|
|
}
|
|
|
|
public AppCompatToggleButton(@NonNull Context context, @Nullable AttributeSet attributeSet, int i) {
|
|
super(context, attributeSet, i);
|
|
ThemeUtils.checkAppCompatTheme(this, getContext());
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = new AppCompatBackgroundHelper(this);
|
|
this.mBackgroundTintHelper = appCompatBackgroundHelper;
|
|
appCompatBackgroundHelper.loadFromAttributes(attributeSet, i);
|
|
AppCompatTextHelper appCompatTextHelper = new AppCompatTextHelper(this);
|
|
this.mTextHelper = appCompatTextHelper;
|
|
appCompatTextHelper.loadFromAttributes(attributeSet, i);
|
|
getEmojiTextViewHelper().loadFromAttributes(attributeSet, i);
|
|
}
|
|
|
|
@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.widget.ToggleButton, 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 // android.widget.ToggleButton, android.widget.CompoundButton, android.widget.TextView, android.view.View
|
|
public void drawableStateChanged() {
|
|
super.drawableStateChanged();
|
|
AppCompatBackgroundHelper appCompatBackgroundHelper = this.mBackgroundTintHelper;
|
|
if (appCompatBackgroundHelper != null) {
|
|
appCompatBackgroundHelper.applySupportBackgroundTint();
|
|
}
|
|
AppCompatTextHelper appCompatTextHelper = this.mTextHelper;
|
|
if (appCompatTextHelper != null) {
|
|
appCompatTextHelper.applyCompoundDrawablesTints();
|
|
}
|
|
}
|
|
|
|
@Override // android.widget.TextView
|
|
public void setFilters(@NonNull InputFilter[] inputFilterArr) {
|
|
super.setFilters(getEmojiTextViewHelper().getFilters(inputFilterArr));
|
|
}
|
|
|
|
@NonNull
|
|
private AppCompatEmojiTextHelper getEmojiTextViewHelper() {
|
|
if (this.mAppCompatEmojiTextHelper == null) {
|
|
this.mAppCompatEmojiTextHelper = new AppCompatEmojiTextHelper(this);
|
|
}
|
|
return this.mAppCompatEmojiTextHelper;
|
|
}
|
|
|
|
@Override // android.widget.TextView
|
|
public void setAllCaps(boolean z) {
|
|
super.setAllCaps(z);
|
|
getEmojiTextViewHelper().setAllCaps(z);
|
|
}
|
|
|
|
@Override // androidx.appcompat.widget.EmojiCompatConfigurationView
|
|
public void setEmojiCompatEnabled(boolean z) {
|
|
getEmojiTextViewHelper().setEnabled(z);
|
|
}
|
|
|
|
@Override // androidx.appcompat.widget.EmojiCompatConfigurationView
|
|
public boolean isEmojiCompatEnabled() {
|
|
return getEmojiTextViewHelper().isEnabled();
|
|
}
|
|
|
|
@Override // android.widget.TextView
|
|
public void setCompoundDrawables(@Nullable Drawable drawable, @Nullable Drawable drawable2, @Nullable Drawable drawable3, @Nullable Drawable drawable4) {
|
|
super.setCompoundDrawables(drawable, drawable2, drawable3, drawable4);
|
|
AppCompatTextHelper appCompatTextHelper = this.mTextHelper;
|
|
if (appCompatTextHelper != null) {
|
|
appCompatTextHelper.onSetCompoundDrawables();
|
|
}
|
|
}
|
|
|
|
@Override // android.widget.TextView
|
|
public void setCompoundDrawablesRelative(@Nullable Drawable drawable, @Nullable Drawable drawable2, @Nullable Drawable drawable3, @Nullable Drawable drawable4) {
|
|
super.setCompoundDrawablesRelative(drawable, drawable2, drawable3, drawable4);
|
|
AppCompatTextHelper appCompatTextHelper = this.mTextHelper;
|
|
if (appCompatTextHelper != null) {
|
|
appCompatTextHelper.onSetCompoundDrawables();
|
|
}
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableCompoundDrawablesView
|
|
@Nullable
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public ColorStateList getSupportCompoundDrawablesTintList() {
|
|
return this.mTextHelper.getCompoundDrawableTintList();
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableCompoundDrawablesView
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public void setSupportCompoundDrawablesTintList(@Nullable ColorStateList colorStateList) {
|
|
this.mTextHelper.setCompoundDrawableTintList(colorStateList);
|
|
this.mTextHelper.applyCompoundDrawablesTints();
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableCompoundDrawablesView
|
|
@Nullable
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public PorterDuff.Mode getSupportCompoundDrawablesTintMode() {
|
|
return this.mTextHelper.getCompoundDrawableTintMode();
|
|
}
|
|
|
|
@Override // androidx.core.widget.TintableCompoundDrawablesView
|
|
@RestrictTo({RestrictTo.Scope.LIBRARY_GROUP_PREFIX})
|
|
public void setSupportCompoundDrawablesTintMode(@Nullable PorterDuff.Mode mode) {
|
|
this.mTextHelper.setCompoundDrawableTintMode(mode);
|
|
this.mTextHelper.applyCompoundDrawablesTints();
|
|
}
|
|
}
|