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 u1 implements v3.a {

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

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

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

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

    public u1(ConstraintLayout constraintLayout, ImageView imageView, TextView textView, TextView textView2) {
        this.f27521a = constraintLayout;
        this.f27522b = imageView;
        this.f27523c = textView;
        this.f27524d = textView2;
    }

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

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