Rabbit-R1/switch port/java/sources/tech/rabbit/r1launcher/databinding/FragmentSetPasscodeBinding.java
2024-05-21 17:08:36 -04:00

97 lines
4.5 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.LinearLayout;
import android.widget.TextView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import tech.rabbit.r1launcher.R;
import tech.rabbit.r1launcher.initstep.widget.NumberPickerView;
/* loaded from: classes3.dex */
public final class FragmentSetPasscodeBinding implements ViewBinding {
public final FrameLayout flContinueContainer;
public final LinearLayout llTipContainer;
public final NumberPickerView npvPicker;
private final FrameLayout rootView;
public final TextView tvConfirmPasscode;
public final TextView tvContinue;
public final TextView tvRetry;
public final TextView tvSuccessOrWaiting;
public final TextView tvTip;
public final TextView tvToFinish;
@Override // androidx.viewbinding.ViewBinding
public FrameLayout getRoot() {
return this.rootView;
}
private FragmentSetPasscodeBinding(FrameLayout frameLayout, FrameLayout frameLayout2, LinearLayout linearLayout, NumberPickerView numberPickerView, TextView textView, TextView textView2, TextView textView3, TextView textView4, TextView textView5, TextView textView6) {
this.rootView = frameLayout;
this.flContinueContainer = frameLayout2;
this.llTipContainer = linearLayout;
this.npvPicker = numberPickerView;
this.tvConfirmPasscode = textView;
this.tvContinue = textView2;
this.tvRetry = textView3;
this.tvSuccessOrWaiting = textView4;
this.tvTip = textView5;
this.tvToFinish = textView6;
}
public static FragmentSetPasscodeBinding inflate(LayoutInflater layoutInflater) {
return inflate(layoutInflater, null, false);
}
public static FragmentSetPasscodeBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z) {
View inflate = layoutInflater.inflate(R.layout.fragment_set_passcode, viewGroup, false);
if (z) {
viewGroup.addView(inflate);
}
return bind(inflate);
}
public static FragmentSetPasscodeBinding bind(View view) {
int i = R.id.fl_continue_container;
FrameLayout frameLayout = (FrameLayout) ViewBindings.findChildViewById(view, i);
if (frameLayout != null) {
i = R.id.ll_tip_container;
LinearLayout linearLayout = (LinearLayout) ViewBindings.findChildViewById(view, i);
if (linearLayout != null) {
i = R.id.npv_picker;
NumberPickerView numberPickerView = (NumberPickerView) ViewBindings.findChildViewById(view, i);
if (numberPickerView != null) {
i = R.id.tv_confirm_passcode;
TextView textView = (TextView) ViewBindings.findChildViewById(view, i);
if (textView != null) {
i = R.id.tv_continue;
TextView textView2 = (TextView) ViewBindings.findChildViewById(view, i);
if (textView2 != null) {
i = R.id.tv_retry;
TextView textView3 = (TextView) ViewBindings.findChildViewById(view, i);
if (textView3 != null) {
i = R.id.tv_success_or_waiting;
TextView textView4 = (TextView) ViewBindings.findChildViewById(view, i);
if (textView4 != null) {
i = R.id.tv_tip;
TextView textView5 = (TextView) ViewBindings.findChildViewById(view, i);
if (textView5 != null) {
i = R.id.tv_to_finish;
TextView textView6 = (TextView) ViewBindings.findChildViewById(view, i);
if (textView6 != null) {
return new FragmentSetPasscodeBinding((FrameLayout) view, frameLayout, linearLayout, numberPickerView, textView, textView2, textView3, textView4, textView5, textView6);
}
}
}
}
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
}