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.TriangleView;

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

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

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

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

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

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

    public u4(ConstraintLayout constraintLayout, ConstraintLayout constraintLayout2, TextView textView, TextView textView2, TriangleView triangleView) {
        this.f27534a = constraintLayout;
        this.f27535b = constraintLayout2;
        this.f27536c = textView;
        this.f27537d = textView2;
        this.f27538e = triangleView;
    }

    public static u4 a(View view) {
        int i10 = R.id.ll_remain_time;
        ConstraintLayout constraintLayout = (ConstraintLayout) v3.b.findChildViewById(view, R.id.ll_remain_time);
        if (constraintLayout != null) {
            i10 = R.id.tv_page_title;
            TextView textView = (TextView) v3.b.findChildViewById(view, R.id.tv_page_title);
            if (textView != null) {
                i10 = R.id.tv_remain_time;
                TextView textView2 = (TextView) v3.b.findChildViewById(view, R.id.tv_remain_time);
                if (textView2 != null) {
                    i10 = R.id.tv_triangle;
                    TriangleView triangleView = (TriangleView) v3.b.findChildViewById(view, R.id.tv_triangle);
                    if (triangleView != null) {
                        return new u4((ConstraintLayout) view, constraintLayout, textView, textView2, triangleView);
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i10)));
    }

    @NonNull
    public static u4 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.layout_title, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        return a(viewInflate);
    }

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