package ie;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import org.drive_hunter.R;

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

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

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

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

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

    public l3(LinearLayout linearLayout, RelativeLayout relativeLayout, RelativeLayout relativeLayout2, TextView textView) {
        this.f27176a = linearLayout;
        this.f27177b = relativeLayout;
        this.f27178c = relativeLayout2;
        this.f27179d = textView;
    }

    @NonNull
    public static l3 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.layout_custom_dialog_download, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.rl_cancel;
        RelativeLayout relativeLayout = (RelativeLayout) v3.b.findChildViewById(viewInflate, R.id.rl_cancel);
        if (relativeLayout != null) {
            i10 = R.id.rl_confirm;
            RelativeLayout relativeLayout2 = (RelativeLayout) v3.b.findChildViewById(viewInflate, R.id.rl_confirm);
            if (relativeLayout2 != null) {
                i10 = R.id.tip;
                TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.tip);
                if (textView != null) {
                    i10 = R.id.tv_cancel;
                    if (((TextView) v3.b.findChildViewById(viewInflate, R.id.tv_cancel)) != null) {
                        i10 = R.id.tv_confirm;
                        if (((TextView) v3.b.findChildViewById(viewInflate, R.id.tv_confirm)) != null) {
                            return new l3((LinearLayout) viewInflate, relativeLayout, relativeLayout2, textView);
                        }
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

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