37 lines
1.0 KiB
Java
37 lines
1.0 KiB
Java
package com.scb.phone.view.custom.bulktransfer;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import android.view.LayoutInflater;
|
|
import android.view.ViewGroup;
|
|
import android.widget.LinearLayout;
|
|
import android.widget.TextView;
|
|
import butterknife.BindView;
|
|
import butterknife.ButterKnife;
|
|
import com.scb.phone.R;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class CustomEffectiveDate extends LinearLayout {
|
|
|
|
@BindView
|
|
TextView effectiveDate;
|
|
|
|
public CustomEffectiveDate(Context context) {
|
|
super(context);
|
|
LayoutInflater.from(getContext()).inflate(R.layout.2131560079, (ViewGroup) this, true);
|
|
ButterKnife.c(this);
|
|
setOrientation(1);
|
|
}
|
|
|
|
public CustomEffectiveDate(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
LayoutInflater.from(getContext()).inflate(R.layout.2131560079, (ViewGroup) this, true);
|
|
ButterKnife.c(this);
|
|
setOrientation(1);
|
|
}
|
|
|
|
public void setEffectiveDate(String str) {
|
|
this.effectiveDate.setText(str);
|
|
}
|
|
}
|