what-the-bank/sources/com/scb/phone/view/custom/mailingaddress/BulletThaiTextView.java

60 lines
1.5 KiB
Java

package com.scb.phone.view.custom.mailingaddress;
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;
import o.C14957gcv;
/* loaded from: classes5.dex */
public final class BulletThaiTextView extends LinearLayout {
@BindView
public TextView tvBullet;
@BindView
public TextView tvRemark;
public BulletThaiTextView(Context context) {
super(context);
d();
}
public BulletThaiTextView(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
d();
}
private void d() {
Object systemService = getContext().getSystemService("layout_inflater");
C14957gcv.d(systemService, "");
((LayoutInflater) systemService).inflate(R.layout.2131558927, (ViewGroup) this, true);
ButterKnife.c(this);
}
public final void setText(String str) {
C14957gcv.e(str, "");
TextView textView = this.tvRemark;
if (textView == null) {
C14957gcv.a("");
textView = null;
}
textView.setText(str);
}
public final void setTvRemark(TextView textView) {
C14957gcv.e(textView, "");
this.tvRemark = textView;
}
public final void setTvBullet(TextView textView) {
C14957gcv.e(textView, "");
this.tvBullet = textView;
}
}