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