ADD week 5
This commit is contained in:
19
02-Easy5/E5/sources/androidx/appcompat/widget/TintInfo.java
Normal file
19
02-Easy5/E5/sources/androidx/appcompat/widget/TintInfo.java
Normal file
@ -0,0 +1,19 @@
|
||||
package androidx.appcompat.widget;
|
||||
|
||||
import android.content.res.ColorStateList;
|
||||
import android.graphics.PorterDuff;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class TintInfo {
|
||||
public boolean mHasTintList;
|
||||
public boolean mHasTintMode;
|
||||
public ColorStateList mTintList;
|
||||
public PorterDuff.Mode mTintMode;
|
||||
|
||||
void clear() {
|
||||
this.mTintList = null;
|
||||
this.mHasTintList = false;
|
||||
this.mTintMode = null;
|
||||
this.mHasTintMode = false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user