package ie;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RelativeLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import org.drive_hunter.R;

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

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

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

    public a3(RelativeLayout relativeLayout, TextView textView) {
        this.f26636a = relativeLayout;
        this.f26637b = textView;
    }

    @NonNull
    public static a3 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.item_tag_new, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.tv_tag);
        if (textView != null) {
            return new a3((RelativeLayout) viewInflate, textView);
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(R.id.tv_tag)));
    }

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