package ie;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import org.drive_hunter.R;
import xyz.stream.view.CustomImageView;
import xyz.stream.view.refresh.layout.AutoRefreshLayout;
import xyz.stream.view.tvrecyclerview.TvRecyclerView;

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

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

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

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

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

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

    public o0(ConstraintLayout constraintLayout, CustomImageView customImageView, AutoRefreshLayout autoRefreshLayout, TvRecyclerView tvRecyclerView, TextView textView) {
        this.f27293a = constraintLayout;
        this.f27294b = customImageView;
        this.f27295c = autoRefreshLayout;
        this.f27296d = tvRecyclerView;
        this.f27297e = textView;
    }

    @NonNull
    public static o0 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.fragment_person, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.iv_person_photo;
        CustomImageView customImageView = (CustomImageView) v3.b.findChildViewById(viewInflate, R.id.iv_person_photo);
        if (customImageView != null) {
            i10 = R.id.layout_person_info;
            if (((ConstraintLayout) v3.b.findChildViewById(viewInflate, R.id.layout_person_info)) != null) {
                i10 = R.id.refresh;
                AutoRefreshLayout autoRefreshLayout = (AutoRefreshLayout) v3.b.findChildViewById(viewInflate, R.id.refresh);
                if (autoRefreshLayout != null) {
                    i10 = R.id.rv;
                    TvRecyclerView tvRecyclerView = (TvRecyclerView) v3.b.findChildViewById(viewInflate, R.id.rv);
                    if (tvRecyclerView != null) {
                        i10 = R.id.tv_known_for;
                        if (((TextView) v3.b.findChildViewById(viewInflate, R.id.tv_known_for)) != null) {
                            i10 = R.id.tv_person_name;
                            TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.tv_person_name);
                            if (textView != null) {
                                return new o0((ConstraintLayout) viewInflate, customImageView, autoRefreshLayout, tvRecyclerView, textView);
                            }
                        }
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

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