39 lines
1.2 KiB
Java
39 lines
1.2 KiB
Java
package com.scb.phone.view.custom.profilemanagement;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import android.view.LayoutInflater;
|
|
import android.view.ViewGroup;
|
|
import android.widget.TextView;
|
|
import butterknife.BindView;
|
|
import butterknife.ButterKnife;
|
|
import com.scb.phone.R;
|
|
import o.UV;
|
|
import o.UX;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class AccountManagementHeaderCustomView extends AccountManagementItem {
|
|
|
|
@BindView
|
|
TextView header;
|
|
|
|
public AccountManagementHeaderCustomView(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public AccountManagementHeaderCustomView(Context context, AttributeSet attributeSet) {
|
|
this(context, attributeSet, 0);
|
|
}
|
|
|
|
public AccountManagementHeaderCustomView(Context context, AttributeSet attributeSet, int i) {
|
|
super(context, attributeSet, i);
|
|
((LayoutInflater) context.getSystemService("layout_inflater")).inflate(R.layout.2131558896, (ViewGroup) this, true);
|
|
ButterKnife.c(this);
|
|
}
|
|
|
|
@Override // com.scb.phone.view.custom.profilemanagement.AccountManagementItem
|
|
public void setDisplay(UV uv, boolean z) {
|
|
this.header.setText(((UX) uv).e);
|
|
}
|
|
}
|