mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
22 lines
461 B
Java
22 lines
461 B
Java
|
package androidx.cardview.widget;
|
||
|
|
||
|
import android.graphics.drawable.Drawable;
|
||
|
import android.view.View;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
interface CardViewDelegate {
|
||
|
Drawable getCardBackground();
|
||
|
|
||
|
View getCardView();
|
||
|
|
||
|
boolean getPreventCornerOverlap();
|
||
|
|
||
|
boolean getUseCompatPadding();
|
||
|
|
||
|
void setCardBackground(Drawable drawable);
|
||
|
|
||
|
void setMinWidthHeightInternal(int i, int i2);
|
||
|
|
||
|
void setShadowPadding(int i, int i2, int i3, int i4);
|
||
|
}
|