package xyz.stream.view.databinding;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import v3.a;
import v3.b;
import xyz.stream.view.R;

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

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

    @NonNull
    public final LinearLayout llDialogBtn;

    @NonNull
    public final LinearLayout llDialogProgress;

    @NonNull
    public final ProgressBar pbProgress;

    @NonNull
    public final TextView tvCancel;

    @NonNull
    public final TextView tvConfirm;

    @NonNull
    public final TextView tvDialogContent;

    @NonNull
    public final TextView tvDialogTitle;

    @NonNull
    public final TextView tvDialogVersion;

    @NonNull
    public final TextView tvProgress;

    @NonNull
    public final View vDialogLine;

    public LayoutCustomUpdateDialogBinding(FrameLayout frameLayout, LinearLayout linearLayout, LinearLayout linearLayout2, ProgressBar progressBar, TextView textView, TextView textView2, TextView textView3, TextView textView4, TextView textView5, TextView textView6, View view) {
        this.f36480a = frameLayout;
        this.llDialogBtn = linearLayout;
        this.llDialogProgress = linearLayout2;
        this.pbProgress = progressBar;
        this.tvCancel = textView;
        this.tvConfirm = textView2;
        this.tvDialogContent = textView3;
        this.tvDialogTitle = textView4;
        this.tvDialogVersion = textView5;
        this.tvProgress = textView6;
        this.vDialogLine = view;
    }

    @NonNull
    public static LayoutCustomUpdateDialogBinding bind(@NonNull View view) {
        View viewFindChildViewById;
        int i10 = R.id.ll_dialog_btn;
        LinearLayout linearLayout = (LinearLayout) b.findChildViewById(view, i10);
        if (linearLayout != null) {
            i10 = R.id.ll_dialog_progress;
            LinearLayout linearLayout2 = (LinearLayout) b.findChildViewById(view, i10);
            if (linearLayout2 != null) {
                i10 = R.id.pb_progress;
                ProgressBar progressBar = (ProgressBar) b.findChildViewById(view, i10);
                if (progressBar != null) {
                    i10 = R.id.tv_cancel;
                    TextView textView = (TextView) b.findChildViewById(view, i10);
                    if (textView != null) {
                        i10 = R.id.tv_confirm;
                        TextView textView2 = (TextView) b.findChildViewById(view, i10);
                        if (textView2 != null) {
                            i10 = R.id.tv_dialog_content;
                            TextView textView3 = (TextView) b.findChildViewById(view, i10);
                            if (textView3 != null) {
                                i10 = R.id.tv_dialog_title;
                                TextView textView4 = (TextView) b.findChildViewById(view, i10);
                                if (textView4 != null) {
                                    i10 = R.id.tv_dialog_version;
                                    TextView textView5 = (TextView) b.findChildViewById(view, i10);
                                    if (textView5 != null) {
                                        i10 = R.id.tv_progress;
                                        TextView textView6 = (TextView) b.findChildViewById(view, i10);
                                        if (textView6 != null && (viewFindChildViewById = b.findChildViewById(view, (i10 = R.id.v_dialog_line))) != null) {
                                            return new LayoutCustomUpdateDialogBinding((FrameLayout) view, linearLayout, linearLayout2, progressBar, textView, textView2, textView3, textView4, textView5, textView6, viewFindChildViewById);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i10)));
    }

    @NonNull
    public static LayoutCustomUpdateDialogBinding inflate(@NonNull LayoutInflater layoutInflater) {
        return inflate(layoutInflater, null, false);
    }

    @Override // v3.a
    @NonNull
    public FrameLayout getRoot() {
        return this.f36480a;
    }

    @NonNull
    public static LayoutCustomUpdateDialogBinding inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.layout_custom_update_dialog, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        return bind(viewInflate);
    }
}
