package xyz.stream.view.databinding;

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 v3.a;
import xyz.stream.view.R;

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

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

    @NonNull
    public final TextView btnInput;

    public LibInputItemBinding(TextView textView, TextView textView2) {
        this.f36485a = textView;
        this.btnInput = textView2;
    }

    @NonNull
    public static LibInputItemBinding bind(@NonNull View view) {
        if (view == null) {
            throw new NullPointerException("rootView");
        }
        TextView textView = (TextView) view;
        return new LibInputItemBinding(textView, textView);
    }

    @NonNull
    public static LibInputItemBinding inflate(@NonNull LayoutInflater layoutInflater) {
        return inflate(layoutInflater, null, false);
    }

    @Override // v3.a
    @NonNull
    public TextView getRoot() {
        return this.f36485a;
    }

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