42 lines
1.5 KiB
Java
42 lines
1.5 KiB
Java
package com.scb.phone.view.fragment.easycash.salesheets;
|
|
|
|
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 com.scb.phone.R;
|
|
import o.C0680Mb;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class EasycashSalesheetEmptyFragment extends Hilt_EasycashSalesheetEmptyFragment {
|
|
|
|
@BindView
|
|
TextView errorDescription;
|
|
|
|
@BindView
|
|
TextView errorText;
|
|
|
|
public static EasycashSalesheetEmptyFragment a(C0680Mb c0680Mb) {
|
|
EasycashSalesheetEmptyFragment easycashSalesheetEmptyFragment = new EasycashSalesheetEmptyFragment();
|
|
Bundle bundle = new Bundle();
|
|
bundle.putParcelable("com.scb.phone.SALESHEET_EMPTY_DISPLAY", c0680Mb);
|
|
easycashSalesheetEmptyFragment.setArguments(bundle);
|
|
return easycashSalesheetEmptyFragment;
|
|
}
|
|
|
|
@Override // androidx.fragment.app.Fragment
|
|
public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) {
|
|
View inflate = layoutInflater.inflate(R.layout.2131559613, viewGroup, false);
|
|
ButterKnife.c(this, inflate);
|
|
if (getArguments() != null && getArguments().getParcelable("com.scb.phone.SALESHEET_EMPTY_DISPLAY") != null) {
|
|
C0680Mb c0680Mb = (C0680Mb) getArguments().getParcelable("com.scb.phone.SALESHEET_EMPTY_DISPLAY");
|
|
this.errorText.setText(c0680Mb.a);
|
|
this.errorDescription.setText(c0680Mb.d);
|
|
}
|
|
return inflate;
|
|
}
|
|
}
|