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;

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

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

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

    public s4(ConstraintLayout constraintLayout, TextView textView) {
        this.f27484a = constraintLayout;
        this.f27485b = textView;
    }

    public static s4 a(View view) {
        TextView textView = (TextView) v3.b.findChildViewById(view, R.id.tv_date);
        if (textView != null) {
            return new s4((ConstraintLayout) view, textView);
        }
        throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(R.id.tv_date)));
    }

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

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