parent
33b2741273
commit
d3a88f33d7
@ -0,0 +1,91 @@
|
|||||||
|
// 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.FrameLayout;
|
||||||
|
import android.widget.ListView;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
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 NoteListBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final FrameLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button btnNewNote;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ListView notesList;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView tvTitleBar;
|
||||||
|
|
||||||
|
private NoteListBinding(@NonNull FrameLayout rootView, @NonNull Button btnNewNote,
|
||||||
|
@NonNull ListView notesList, @NonNull TextView tvTitleBar) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.btnNewNote = btnNewNote;
|
||||||
|
this.notesList = notesList;
|
||||||
|
this.tvTitleBar = tvTitleBar;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public FrameLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.note_list, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListBinding 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.btn_new_note;
|
||||||
|
Button btnNewNote = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnNewNote == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.notes_list;
|
||||||
|
ListView notesList = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (notesList == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.tv_title_bar;
|
||||||
|
TextView tvTitleBar = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvTitleBar == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NoteListBinding((FrameLayout) rootView, btnNewNote, notesList, tvTitleBar);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue