package ie;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
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 e2 implements v3.a {

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

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

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

    public e2(ConstraintLayout constraintLayout, ImageView imageView, TextView textView) {
        this.f26807a = constraintLayout;
        this.f26808b = imageView;
        this.f26809c = textView;
    }

    @NonNull
    public static e2 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.item_network, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.item_image;
        ImageView imageView = (ImageView) v3.b.findChildViewById(viewInflate, R.id.item_image);
        if (imageView != null) {
            i10 = R.id.item_title;
            TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.item_title);
            if (textView != null) {
                return new e2((ConstraintLayout) viewInflate, imageView, textView);
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

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