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

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

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

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

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

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

    public e3(ConstraintLayout constraintLayout, ImageView imageView, ImageView imageView2, TextView textView, TextView textView2) {
        this.f26810a = constraintLayout;
        this.f26811b = imageView;
        this.f26812c = imageView2;
        this.f26813d = textView;
        this.f26814e = textView2;
    }

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

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