package tech.rabbit.r1launcher.databinding; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.LinearLayout; import android.widget.TextView; import androidx.viewbinding.ViewBinding; import androidx.viewbinding.ViewBindings; import tech.rabbit.r1launcher.R; /* loaded from: classes3.dex */ public final class FragmentConnectRabbitAccountSuccessBinding implements ViewBinding { private final LinearLayout rootView; public final TextView tvContinue; public final TextView tvStatus; @Override // androidx.viewbinding.ViewBinding public LinearLayout getRoot() { return this.rootView; } private FragmentConnectRabbitAccountSuccessBinding(LinearLayout linearLayout, TextView textView, TextView textView2) { this.rootView = linearLayout; this.tvContinue = textView; this.tvStatus = textView2; } public static FragmentConnectRabbitAccountSuccessBinding inflate(LayoutInflater layoutInflater) { return inflate(layoutInflater, null, false); } public static FragmentConnectRabbitAccountSuccessBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z) { View inflate = layoutInflater.inflate(R.layout.fragment_connect_rabbit_account_success, viewGroup, false); if (z) { viewGroup.addView(inflate); } return bind(inflate); } public static FragmentConnectRabbitAccountSuccessBinding bind(View view) { int i = R.id.tv_continue; TextView textView = (TextView) ViewBindings.findChildViewById(view, i); if (textView != null) { i = R.id.tv_status; TextView textView2 = (TextView) ViewBindings.findChildViewById(view, i); if (textView2 != null) { return new FragmentConnectRabbitAccountSuccessBinding((LinearLayout) view, textView, textView2); } } throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i))); } }