what-the-bank/sources/com/scb/phone/components/ItemCustom.java

27 lines
685 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.components;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.FrameLayout;
import o.EM;
/* loaded from: classes3.dex */
public abstract class ItemCustom<D extends EM> extends FrameLayout {
protected abstract void a(Context context);
public abstract void setUpWithDisplay(D d);
public ItemCustom(Context context) {
this(context, null);
}
public ItemCustom(Context context, AttributeSet attributeSet) {
this(context, attributeSet, 0);
}
public ItemCustom(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
a(context);
}
}