83 lines
2.1 KiB
Java
83 lines
2.1 KiB
Java
package com.scb.phone.view.fragment.hml;
|
|
|
|
import android.os.Bundle;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.TextView;
|
|
import butterknife.BindView;
|
|
import butterknife.ButterKnife;
|
|
import butterknife.OnClick;
|
|
import com.scb.phone.R;
|
|
import o.NB;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class HmlOutcomePendingFragment extends Hilt_HmlOutcomePendingFragment {
|
|
|
|
@BindView
|
|
public TextView contactInfo;
|
|
|
|
@BindView
|
|
protected TextView dateText;
|
|
|
|
@BindView
|
|
public TextView notificationHeader;
|
|
|
|
@BindView
|
|
public TextView notificationText;
|
|
|
|
@BindView
|
|
public TextView statusFirst;
|
|
|
|
@BindView
|
|
public TextView statusHeader;
|
|
|
|
@BindView
|
|
public TextView statusSecond;
|
|
|
|
@BindView
|
|
public TextView statusThird;
|
|
|
|
@BindView
|
|
protected TextView subtitle;
|
|
|
|
@BindView
|
|
protected TextView title;
|
|
|
|
@OnClick
|
|
public void onButtonReturnHomeClicked(View view) {
|
|
k(false);
|
|
}
|
|
|
|
@OnClick
|
|
public void onContactCallCenter(View view) {
|
|
aZ_();
|
|
}
|
|
|
|
public static HmlOutcomePendingFragment e(NB nb) {
|
|
HmlOutcomePendingFragment hmlOutcomePendingFragment = new HmlOutcomePendingFragment();
|
|
Bundle bundle = new Bundle();
|
|
bundle.putParcelable("HML_OUTCOME_PENDING_EXTRA", nb);
|
|
hmlOutcomePendingFragment.setArguments(bundle);
|
|
return hmlOutcomePendingFragment;
|
|
}
|
|
|
|
@Override // androidx.fragment.app.Fragment
|
|
public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) {
|
|
View inflate = layoutInflater.inflate(R.layout.2131559714, (ViewGroup) null, false);
|
|
ButterKnife.c(this, inflate);
|
|
NB nb = getArguments() != null ? (NB) getArguments().getParcelable("HML_OUTCOME_PENDING_EXTRA") : null;
|
|
if (nb != null) {
|
|
d(nb);
|
|
}
|
|
return inflate;
|
|
}
|
|
|
|
public void d(NB nb) {
|
|
this.title.setText(nb.d);
|
|
this.subtitle.setText(nb.e);
|
|
this.dateText.setVisibility(nb.c == null ? 8 : 0);
|
|
this.dateText.setText(nb.c);
|
|
}
|
|
}
|