mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
47 lines
1.7 KiB
Java
47 lines
1.7 KiB
Java
package tech.rabbit.r1launcher.databinding;
|
|
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
import android.widget.FrameLayout;
|
|
import android.widget.TextView;
|
|
import androidx.viewbinding.ViewBinding;
|
|
import androidx.viewbinding.ViewBindings;
|
|
import tech.rabbit.r1launcher.R;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class FragmentConnectWifiSuccessBinding implements ViewBinding {
|
|
private final FrameLayout rootView;
|
|
public final TextView tvConnectSuccess;
|
|
|
|
@Override // androidx.viewbinding.ViewBinding
|
|
public FrameLayout getRoot() {
|
|
return this.rootView;
|
|
}
|
|
|
|
private FragmentConnectWifiSuccessBinding(FrameLayout frameLayout, TextView textView) {
|
|
this.rootView = frameLayout;
|
|
this.tvConnectSuccess = textView;
|
|
}
|
|
|
|
public static FragmentConnectWifiSuccessBinding inflate(LayoutInflater layoutInflater) {
|
|
return inflate(layoutInflater, null, false);
|
|
}
|
|
|
|
public static FragmentConnectWifiSuccessBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z) {
|
|
View inflate = layoutInflater.inflate(R.layout.fragment_connect_wifi_success, viewGroup, false);
|
|
if (z) {
|
|
viewGroup.addView(inflate);
|
|
}
|
|
return bind(inflate);
|
|
}
|
|
|
|
public static FragmentConnectWifiSuccessBinding bind(View view) {
|
|
int i = R.id.tv_connect_success;
|
|
TextView textView = (TextView) ViewBindings.findChildViewById(view, i);
|
|
if (textView != null) {
|
|
return new FragmentConnectWifiSuccessBinding((FrameLayout) view, textView);
|
|
}
|
|
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
|
}
|
|
}
|