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

27 lines
685 B
Java

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);
}
}