mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
60 lines
2.3 KiB
Java
60 lines
2.3 KiB
Java
|
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 LayoutSettingTitleBinding implements ViewBinding {
|
||
|
public final LinearLayout llFocusTitle;
|
||
|
private final LinearLayout rootView;
|
||
|
public final TextView tvFocusTitle;
|
||
|
public final TextView tvNormalTitle;
|
||
|
|
||
|
@Override // androidx.viewbinding.ViewBinding
|
||
|
public LinearLayout getRoot() {
|
||
|
return this.rootView;
|
||
|
}
|
||
|
|
||
|
private LayoutSettingTitleBinding(LinearLayout linearLayout, LinearLayout linearLayout2, TextView textView, TextView textView2) {
|
||
|
this.rootView = linearLayout;
|
||
|
this.llFocusTitle = linearLayout2;
|
||
|
this.tvFocusTitle = textView;
|
||
|
this.tvNormalTitle = textView2;
|
||
|
}
|
||
|
|
||
|
public static LayoutSettingTitleBinding inflate(LayoutInflater layoutInflater) {
|
||
|
return inflate(layoutInflater, null, false);
|
||
|
}
|
||
|
|
||
|
public static LayoutSettingTitleBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z) {
|
||
|
View inflate = layoutInflater.inflate(R.layout.layout_setting_title, viewGroup, false);
|
||
|
if (z) {
|
||
|
viewGroup.addView(inflate);
|
||
|
}
|
||
|
return bind(inflate);
|
||
|
}
|
||
|
|
||
|
public static LayoutSettingTitleBinding bind(View view) {
|
||
|
int i = R.id.ll_focus_title;
|
||
|
LinearLayout linearLayout = (LinearLayout) ViewBindings.findChildViewById(view, i);
|
||
|
if (linearLayout != null) {
|
||
|
i = R.id.tv_focus_title;
|
||
|
TextView textView = (TextView) ViewBindings.findChildViewById(view, i);
|
||
|
if (textView != null) {
|
||
|
i = R.id.tv_normal_title;
|
||
|
TextView textView2 = (TextView) ViewBindings.findChildViewById(view, i);
|
||
|
if (textView2 != null) {
|
||
|
return new LayoutSettingTitleBinding((LinearLayout) view, linearLayout, textView, textView2);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||
|
}
|
||
|
}
|