package ie;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ProgressBar;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import org.drive_hunter.R;

/* JADX INFO: loaded from: classes3.dex */
public final class c4 implements v3.a {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final ConstraintLayout f26734a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final ProgressBar f26735b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public final TextView f26736c;

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    public final TextView f26737d;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    public final TextView f26738e;

    public c4(ConstraintLayout constraintLayout, ProgressBar progressBar, TextView textView, TextView textView2, TextView textView3) {
        this.f26734a = constraintLayout;
        this.f26735b = progressBar;
        this.f26736c = textView;
        this.f26737d = textView2;
        this.f26738e = textView3;
    }

    @NonNull
    public static c4 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.layout_dialog_trans_progress, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.pb_progress;
        ProgressBar progressBar = (ProgressBar) v3.b.findChildViewById(viewInflate, R.id.pb_progress);
        if (progressBar != null) {
            i10 = R.id.tv_content;
            TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.tv_content);
            if (textView != null) {
                i10 = R.id.tv_progress;
                TextView textView2 = (TextView) v3.b.findChildViewById(viewInflate, R.id.tv_progress);
                if (textView2 != null) {
                    i10 = R.id.tv_title;
                    TextView textView3 = (TextView) v3.b.findChildViewById(viewInflate, R.id.tv_title);
                    if (textView3 != null) {
                        return new c4((ConstraintLayout) viewInflate, progressBar, textView, textView2, textView3);
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

    @Override // v3.a
    public final View getRoot() {
        return this.f26734a;
    }
}
