package ie;

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

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

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

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

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

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

    /* JADX INFO: renamed from: f, reason: collision with root package name */
    public final View f27530f;

    public u2(ConstraintLayout constraintLayout, TextView textView, TextView textView2, TextView textView3, ImageView imageView, View view) {
        this.f27525a = constraintLayout;
        this.f27526b = textView;
        this.f27527c = textView2;
        this.f27528d = textView3;
        this.f27529e = imageView;
        this.f27530f = view;
    }

    @NonNull
    public static u2 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.item_simple_epg, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.item_epg_des;
        TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.item_epg_des);
        if (textView != null) {
            i10 = R.id.item_epg_title;
            TextView textView2 = (TextView) v3.b.findChildViewById(viewInflate, R.id.item_epg_title);
            if (textView2 != null) {
                i10 = R.id.item_tv_epg_time;
                TextView textView3 = (TextView) v3.b.findChildViewById(viewInflate, R.id.item_tv_epg_time);
                if (textView3 != null) {
                    i10 = R.id.iv_epg_icon;
                    ImageView imageView = (ImageView) v3.b.findChildViewById(viewInflate, R.id.iv_epg_icon);
                    if (imageView != null) {
                        i10 = R.id.live_divider;
                        View viewFindChildViewById = v3.b.findChildViewById(viewInflate, R.id.live_divider);
                        if (viewFindChildViewById != null) {
                            i10 = R.id.ll_left;
                            if (((LinearLayout) v3.b.findChildViewById(viewInflate, R.id.ll_left)) != null) {
                                i10 = R.id.ll_right;
                                if (((ConstraintLayout) v3.b.findChildViewById(viewInflate, R.id.ll_right)) != null) {
                                    return new u2((ConstraintLayout) viewInflate, textView, textView2, textView3, imageView, viewFindChildViewById);
                                }
                            }
                        }
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

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