ADD week 5

This commit is contained in:
2025-03-31 16:33:42 +02:00
parent 86f265f22d
commit bf645048e6
4927 changed files with 544053 additions and 0 deletions

View File

@ -0,0 +1,45 @@
package com.google.android.material.theme.overlay;
import android.R;
import android.content.Context;
import android.content.res.TypedArray;
import android.util.AttributeSet;
import androidx.appcompat.view.ContextThemeWrapper;
/* loaded from: classes.dex */
public class MaterialThemeOverlay {
private static final int[] ANDROID_THEME_OVERLAY_ATTRS = {R.attr.theme, com.google.android.material.R.attr.theme};
private static final int[] MATERIAL_THEME_OVERLAY_ATTR = {com.google.android.material.R.attr.materialThemeOverlay};
private MaterialThemeOverlay() {
}
public static Context wrap(Context context, AttributeSet attributeSet, int i, int i2) {
int obtainMaterialThemeOverlayId = obtainMaterialThemeOverlayId(context, attributeSet, i, i2);
boolean z = (context instanceof ContextThemeWrapper) && ((ContextThemeWrapper) context).getThemeResId() == obtainMaterialThemeOverlayId;
if (obtainMaterialThemeOverlayId == 0 || z) {
return context;
}
ContextThemeWrapper contextThemeWrapper = new ContextThemeWrapper(context, obtainMaterialThemeOverlayId);
int obtainAndroidThemeOverlayId = obtainAndroidThemeOverlayId(context, attributeSet);
if (obtainAndroidThemeOverlayId != 0) {
contextThemeWrapper.getTheme().applyStyle(obtainAndroidThemeOverlayId, true);
}
return contextThemeWrapper;
}
private static int obtainAndroidThemeOverlayId(Context context, AttributeSet attributeSet) {
TypedArray obtainStyledAttributes = context.obtainStyledAttributes(attributeSet, ANDROID_THEME_OVERLAY_ATTRS);
int resourceId = obtainStyledAttributes.getResourceId(0, 0);
int resourceId2 = obtainStyledAttributes.getResourceId(1, 0);
obtainStyledAttributes.recycle();
return resourceId != 0 ? resourceId : resourceId2;
}
private static int obtainMaterialThemeOverlayId(Context context, AttributeSet attributeSet, int i, int i2) {
TypedArray obtainStyledAttributes = context.obtainStyledAttributes(attributeSet, MATERIAL_THEME_OVERLAY_ATTR, i, i2);
int resourceId = obtainStyledAttributes.getResourceId(0, 0);
obtainStyledAttributes.recycle();
return resourceId;
}
}