what-the-bank/sources/com/scb/phone/view/custom/prepaid/ConversionToWallet.java

76 lines
2.3 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.scb.phone.view.custom.prepaid;
import android.content.Context;
import android.util.AttributeSet;
import android.view.LayoutInflater;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import androidx.constraintlayout.widget.ConstraintLayout;
import butterknife.BindView;
import butterknife.ButterKnife;
import com.scb.phone.R;
import o.C14957gcv;
/* loaded from: classes5.dex */
public final class ConversionToWallet extends ConstraintLayout {
@BindView
public ImageView ivToFlag;
@BindView
public TextView tvFullRate;
@BindView
public TextView tvToAmount;
@BindView
public TextView tvToCurrency;
private /* synthetic */ ConversionToWallet(Context context, AttributeSet attributeSet, int i, byte b) {
this(context, (i & 2) != 0 ? null : attributeSet, 0);
}
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
public ConversionToWallet(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
C14957gcv.e(context, "");
Object systemService = context.getSystemService("layout_inflater");
C14957gcv.d(systemService, "");
((LayoutInflater) systemService).inflate(R.layout.2131560118, (ViewGroup) this, true);
ButterKnife.c(this);
}
public final void setTvToCurrency(TextView textView) {
C14957gcv.e(textView, "");
this.tvToCurrency = textView;
}
public final void setTvToAmount(TextView textView) {
C14957gcv.e(textView, "");
this.tvToAmount = textView;
}
public final void setTvFullRate(TextView textView) {
C14957gcv.e(textView, "");
this.tvFullRate = textView;
}
public final void setIvToFlag(ImageView imageView) {
C14957gcv.e(imageView, "");
this.ivToFlag = imageView;
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public ConversionToWallet(Context context, AttributeSet attributeSet) {
this(context, attributeSet, 4, (byte) 0);
C14957gcv.e(context, "");
}
/* JADX WARN: 'this' call moved to the top of the method (can break code semantics) */
public ConversionToWallet(Context context) {
this(context, null, 6, (byte) 0);
C14957gcv.e(context, "");
}
}