package com.scb.phone.view.custom.common; import android.app.Dialog; import android.content.Context; import android.widget.TextView; import butterknife.BindView; import butterknife.ButterKnife; import com.scb.phone.R; /* loaded from: classes5.dex */ public class FullScreenProgressDialog extends Dialog { @BindView CustomViewProgressAnimationFull animationView; @BindView public TextView description; @BindView public TextView title; public FullScreenProgressDialog(Context context) { super(context, R.style.f52442132017493); requestWindowFeature(1); setContentView(R.layout.2131559303); ButterKnife.Dh_(this); setCancelable(false); setCanceledOnTouchOutside(false); } @Override // android.app.Dialog protected void onStop() { super.onStop(); CustomViewProgressAnimationFull customViewProgressAnimationFull = this.animationView; if (customViewProgressAnimationFull != null) { customViewProgressAnimationFull.e.cancel(); } } }