parent
81990cff61
commit
2fa78e8805
@ -0,0 +1,51 @@
|
|||||||
|
// 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 androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.viewbinding.ViewBinding;
|
||||||
|
import java.lang.NullPointerException;
|
||||||
|
import java.lang.Override;
|
||||||
|
import net.micode.notes.R;
|
||||||
|
|
||||||
|
public final class NoteListFooterBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final View rootView;
|
||||||
|
|
||||||
|
private NoteListFooterBinding(@NonNull View rootView) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public View getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.note_list_footer, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListFooterBinding bind(@NonNull View rootView) {
|
||||||
|
if (rootView == null) {
|
||||||
|
throw new NullPointerException("rootView");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NoteListFooterBinding(rootView);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue