package ie;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebView;
import android.widget.ImageView;
import android.widget.ProgressBar;
import android.widget.RelativeLayout;
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 x implements v3.a {

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

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

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

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

    public x(ConstraintLayout constraintLayout, ProgressBar progressBar, RelativeLayout relativeLayout, WebView webView) {
        this.f27639a = constraintLayout;
        this.f27640b = progressBar;
        this.f27641c = relativeLayout;
        this.f27642d = webView;
    }

    @NonNull
    public static x inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.activity_subscription, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.iv_back;
        if (((ImageView) v3.b.findChildViewById(viewInflate, R.id.iv_back)) != null) {
            i10 = R.id.progress_bar;
            ProgressBar progressBar = (ProgressBar) v3.b.findChildViewById(viewInflate, R.id.progress_bar);
            if (progressBar != null) {
                i10 = R.id.rl_title;
                RelativeLayout relativeLayout = (RelativeLayout) v3.b.findChildViewById(viewInflate, R.id.rl_title);
                if (relativeLayout != null) {
                    i10 = R.id.tv_title;
                    if (((TextView) v3.b.findChildViewById(viewInflate, R.id.tv_title)) != null) {
                        i10 = R.id.web_view;
                        WebView webView = (WebView) v3.b.findChildViewById(viewInflate, R.id.web_view);
                        if (webView != null) {
                            return new x((ConstraintLayout) viewInflate, progressBar, relativeLayout, webView);
                        }
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

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