parent
a655813adf
commit
3e948b2068
@ -0,0 +1,80 @@
|
|||||||
|
// Generated by view binder compiler. Do not edit!
|
||||||
|
package net.micode.notes.databinding;
|
||||||
|
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||||
|
import androidx.viewbinding.ViewBinding;
|
||||||
|
import androidx.viewbinding.ViewBindings;
|
||||||
|
import java.lang.NullPointerException;
|
||||||
|
import java.lang.Override;
|
||||||
|
import java.lang.String;
|
||||||
|
import net.micode.notes.R;
|
||||||
|
|
||||||
|
public final class ActivityMainBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final ConstraintLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button button;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final EditText editTextTextPersonName;
|
||||||
|
|
||||||
|
private ActivityMainBinding(@NonNull ConstraintLayout rootView, @NonNull Button button,
|
||||||
|
@NonNull EditText editTextTextPersonName) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.button = button;
|
||||||
|
this.editTextTextPersonName = editTextTextPersonName;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public ConstraintLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.activity_main, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static ActivityMainBinding bind(@NonNull View rootView) {
|
||||||
|
// The body of this method is generated in a way you would not otherwise write.
|
||||||
|
// This is done to optimize the compiled bytecode for size and performance.
|
||||||
|
int id;
|
||||||
|
missingId: {
|
||||||
|
id = R.id.button;
|
||||||
|
Button button = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (button == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.editTextTextPersonName;
|
||||||
|
EditText editTextTextPersonName = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (editTextTextPersonName == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new ActivityMainBinding((ConstraintLayout) rootView, button, editTextTextPersonName);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue