@ -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.LinearLayout;
|
||||||
|
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 AccountDialogTitleBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView accountDialogSubtitle;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView accountDialogTitle;
|
||||||
|
|
||||||
|
private AccountDialogTitleBinding(@NonNull LinearLayout rootView,
|
||||||
|
@NonNull TextView accountDialogSubtitle, @NonNull TextView accountDialogTitle) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.accountDialogSubtitle = accountDialogSubtitle;
|
||||||
|
this.accountDialogTitle = accountDialogTitle;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.account_dialog_title, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static AccountDialogTitleBinding 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.account_dialog_subtitle;
|
||||||
|
TextView accountDialogSubtitle = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (accountDialogSubtitle == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.account_dialog_title;
|
||||||
|
TextView accountDialogTitle = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (accountDialogTitle == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new AccountDialogTitleBinding((LinearLayout) rootView, accountDialogSubtitle,
|
||||||
|
accountDialogTitle);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -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));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,92 @@
|
|||||||
|
// 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.LinearLayout;
|
||||||
|
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 ActivitySplashBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final FrameLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button dummyButton;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView fullscreenContent;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final LinearLayout fullscreenContentControls;
|
||||||
|
|
||||||
|
private ActivitySplashBinding(@NonNull FrameLayout rootView, @NonNull Button dummyButton,
|
||||||
|
@NonNull TextView fullscreenContent, @NonNull LinearLayout fullscreenContentControls) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.dummyButton = dummyButton;
|
||||||
|
this.fullscreenContent = fullscreenContent;
|
||||||
|
this.fullscreenContentControls = fullscreenContentControls;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public FrameLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.activity_splash, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static ActivitySplashBinding 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.dummy_button;
|
||||||
|
Button dummyButton = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (dummyButton == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.fullscreen_content;
|
||||||
|
TextView fullscreenContent = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (fullscreenContent == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.fullscreen_content_controls;
|
||||||
|
LinearLayout fullscreenContentControls = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (fullscreenContentControls == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new ActivitySplashBinding((FrameLayout) rootView, dummyButton, fullscreenContent,
|
||||||
|
fullscreenContentControls);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,52 @@
|
|||||||
|
// 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.LinearLayout;
|
||||||
|
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 AddAccountTextBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
private AddAccountTextBinding(@NonNull LinearLayout rootView) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.add_account_text, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static AddAccountTextBinding bind(@NonNull View rootView) {
|
||||||
|
if (rootView == null) {
|
||||||
|
throw new NullPointerException("rootView");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new AddAccountTextBinding((LinearLayout) rootView);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,99 @@
|
|||||||
|
// 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.LinearLayout;
|
||||||
|
import android.widget.NumberPicker;
|
||||||
|
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 DatetimePickerBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final NumberPicker amPm;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final NumberPicker date;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final NumberPicker hour;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final NumberPicker minute;
|
||||||
|
|
||||||
|
private DatetimePickerBinding(@NonNull LinearLayout rootView, @NonNull NumberPicker amPm,
|
||||||
|
@NonNull NumberPicker date, @NonNull NumberPicker hour, @NonNull NumberPicker minute) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.amPm = amPm;
|
||||||
|
this.date = date;
|
||||||
|
this.hour = hour;
|
||||||
|
this.minute = minute;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.datetime_picker, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DatetimePickerBinding 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.amPm;
|
||||||
|
NumberPicker amPm = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (amPm == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.date;
|
||||||
|
NumberPicker date = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (date == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.hour;
|
||||||
|
NumberPicker hour = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (hour == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.minute;
|
||||||
|
NumberPicker minute = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (minute == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new DatetimePickerBinding((LinearLayout) rootView, amPm, date, hour, minute);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,58 @@
|
|||||||
|
// 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.EditText;
|
||||||
|
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 DialogEditTextBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final EditText rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final EditText etFolerName;
|
||||||
|
|
||||||
|
private DialogEditTextBinding(@NonNull EditText rootView, @NonNull EditText etFolerName) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.etFolerName = etFolerName;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public EditText getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.dialog_edit_text, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static DialogEditTextBinding bind(@NonNull View rootView) {
|
||||||
|
if (rootView == null) {
|
||||||
|
throw new NullPointerException("rootView");
|
||||||
|
}
|
||||||
|
|
||||||
|
EditText etFolerName = (EditText) rootView;
|
||||||
|
|
||||||
|
return new DialogEditTextBinding((EditText) rootView, etFolerName);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,79 @@
|
|||||||
|
// 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.LinearLayout;
|
||||||
|
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 FingerprintDialogBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView cancel;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView errorMsg;
|
||||||
|
|
||||||
|
private FingerprintDialogBinding(@NonNull LinearLayout rootView, @NonNull TextView cancel,
|
||||||
|
@NonNull TextView errorMsg) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.cancel = cancel;
|
||||||
|
this.errorMsg = errorMsg;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static FingerprintDialogBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static FingerprintDialogBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.fingerprint_dialog, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static FingerprintDialogBinding 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.cancel;
|
||||||
|
TextView cancel = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (cancel == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.error_msg;
|
||||||
|
TextView errorMsg = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (errorMsg == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new FingerprintDialogBinding((LinearLayout) rootView, cancel, errorMsg);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
// 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.LinearLayout;
|
||||||
|
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 FolderListItemBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView tvFolderName;
|
||||||
|
|
||||||
|
private FolderListItemBinding(@NonNull LinearLayout rootView, @NonNull TextView tvFolderName) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.tvFolderName = tvFolderName;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.folder_list_item, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static FolderListItemBinding 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.tv_folder_name;
|
||||||
|
TextView tvFolderName = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvFolderName == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new FolderListItemBinding((LinearLayout) rootView, tvFolderName);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,413 @@
|
|||||||
|
// 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.ImageButton;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
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;
|
||||||
|
import net.micode.notes.ui.NoteEditText;
|
||||||
|
|
||||||
|
public final class NoteEditBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final FrameLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton addImgBtn;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView btnSetBgColor;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final LinearLayout fontSizeSelector;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button iatBtn;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivAlertIcon;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgBlue;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgBlueSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgGreen;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgGreenSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgRed;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgRedSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgWhite;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgWhiteSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgYellow;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivBgYellowSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivLargeSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivMediumSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivSmallSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivSuperSelect;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final FrameLayout llFontLarge;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final FrameLayout llFontNormal;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final FrameLayout llFontSmall;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final FrameLayout llFontSuper;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final LinearLayout noteBgColorSelector;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final LinearLayout noteEditList;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final NoteEditText noteEditView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final LinearLayout noteTitle;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView numWord;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final LinearLayout svNoteEdit;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView tvAlertDate;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton tvLocked;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView tvModifiedDate;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton tvUnlocked;
|
||||||
|
|
||||||
|
private NoteEditBinding(@NonNull FrameLayout rootView, @NonNull ImageButton addImgBtn,
|
||||||
|
@NonNull ImageView btnSetBgColor, @NonNull LinearLayout fontSizeSelector,
|
||||||
|
@NonNull Button iatBtn, @NonNull ImageView ivAlertIcon, @NonNull ImageView ivBgBlue,
|
||||||
|
@NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen,
|
||||||
|
@NonNull ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed,
|
||||||
|
@NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite,
|
||||||
|
@NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow,
|
||||||
|
@NonNull ImageView ivBgYellowSelect, @NonNull ImageView ivLargeSelect,
|
||||||
|
@NonNull ImageView ivMediumSelect, @NonNull ImageView ivSmallSelect,
|
||||||
|
@NonNull ImageView ivSuperSelect, @NonNull FrameLayout llFontLarge,
|
||||||
|
@NonNull FrameLayout llFontNormal, @NonNull FrameLayout llFontSmall,
|
||||||
|
@NonNull FrameLayout llFontSuper, @NonNull LinearLayout noteBgColorSelector,
|
||||||
|
@NonNull LinearLayout noteEditList, @NonNull NoteEditText noteEditView,
|
||||||
|
@NonNull LinearLayout noteTitle, @NonNull TextView numWord, @NonNull LinearLayout svNoteEdit,
|
||||||
|
@NonNull TextView tvAlertDate, @NonNull ImageButton tvLocked,
|
||||||
|
@NonNull TextView tvModifiedDate, @NonNull ImageButton tvUnlocked) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.addImgBtn = addImgBtn;
|
||||||
|
this.btnSetBgColor = btnSetBgColor;
|
||||||
|
this.fontSizeSelector = fontSizeSelector;
|
||||||
|
this.iatBtn = iatBtn;
|
||||||
|
this.ivAlertIcon = ivAlertIcon;
|
||||||
|
this.ivBgBlue = ivBgBlue;
|
||||||
|
this.ivBgBlueSelect = ivBgBlueSelect;
|
||||||
|
this.ivBgGreen = ivBgGreen;
|
||||||
|
this.ivBgGreenSelect = ivBgGreenSelect;
|
||||||
|
this.ivBgRed = ivBgRed;
|
||||||
|
this.ivBgRedSelect = ivBgRedSelect;
|
||||||
|
this.ivBgWhite = ivBgWhite;
|
||||||
|
this.ivBgWhiteSelect = ivBgWhiteSelect;
|
||||||
|
this.ivBgYellow = ivBgYellow;
|
||||||
|
this.ivBgYellowSelect = ivBgYellowSelect;
|
||||||
|
this.ivLargeSelect = ivLargeSelect;
|
||||||
|
this.ivMediumSelect = ivMediumSelect;
|
||||||
|
this.ivSmallSelect = ivSmallSelect;
|
||||||
|
this.ivSuperSelect = ivSuperSelect;
|
||||||
|
this.llFontLarge = llFontLarge;
|
||||||
|
this.llFontNormal = llFontNormal;
|
||||||
|
this.llFontSmall = llFontSmall;
|
||||||
|
this.llFontSuper = llFontSuper;
|
||||||
|
this.noteBgColorSelector = noteBgColorSelector;
|
||||||
|
this.noteEditList = noteEditList;
|
||||||
|
this.noteEditView = noteEditView;
|
||||||
|
this.noteTitle = noteTitle;
|
||||||
|
this.numWord = numWord;
|
||||||
|
this.svNoteEdit = svNoteEdit;
|
||||||
|
this.tvAlertDate = tvAlertDate;
|
||||||
|
this.tvLocked = tvLocked;
|
||||||
|
this.tvModifiedDate = tvModifiedDate;
|
||||||
|
this.tvUnlocked = tvUnlocked;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public FrameLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.note_edit, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditBinding 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.add_img_btn;
|
||||||
|
ImageButton addImgBtn = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (addImgBtn == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.btn_set_bg_color;
|
||||||
|
ImageView btnSetBgColor = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnSetBgColor == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.font_size_selector;
|
||||||
|
LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (fontSizeSelector == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iatBtn;
|
||||||
|
Button iatBtn = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (iatBtn == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_alert_icon;
|
||||||
|
ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivAlertIcon == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_blue;
|
||||||
|
ImageView ivBgBlue = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgBlue == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_blue_select;
|
||||||
|
ImageView ivBgBlueSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgBlueSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_green;
|
||||||
|
ImageView ivBgGreen = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgGreen == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_green_select;
|
||||||
|
ImageView ivBgGreenSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgGreenSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_red;
|
||||||
|
ImageView ivBgRed = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgRed == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_red_select;
|
||||||
|
ImageView ivBgRedSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgRedSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_white;
|
||||||
|
ImageView ivBgWhite = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgWhite == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_white_select;
|
||||||
|
ImageView ivBgWhiteSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgWhiteSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_yellow;
|
||||||
|
ImageView ivBgYellow = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgYellow == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_bg_yellow_select;
|
||||||
|
ImageView ivBgYellowSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivBgYellowSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_large_select;
|
||||||
|
ImageView ivLargeSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivLargeSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_medium_select;
|
||||||
|
ImageView ivMediumSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivMediumSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_small_select;
|
||||||
|
ImageView ivSmallSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivSmallSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_super_select;
|
||||||
|
ImageView ivSuperSelect = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivSuperSelect == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.ll_font_large;
|
||||||
|
FrameLayout llFontLarge = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (llFontLarge == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.ll_font_normal;
|
||||||
|
FrameLayout llFontNormal = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (llFontNormal == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.ll_font_small;
|
||||||
|
FrameLayout llFontSmall = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (llFontSmall == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.ll_font_super;
|
||||||
|
FrameLayout llFontSuper = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (llFontSuper == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.note_bg_color_selector;
|
||||||
|
LinearLayout noteBgColorSelector = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (noteBgColorSelector == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.note_edit_list;
|
||||||
|
LinearLayout noteEditList = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (noteEditList == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.note_edit_view;
|
||||||
|
NoteEditText noteEditView = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (noteEditView == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.note_title;
|
||||||
|
LinearLayout noteTitle = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (noteTitle == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.num_word;
|
||||||
|
TextView numWord = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (numWord == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.sv_note_edit;
|
||||||
|
LinearLayout svNoteEdit = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (svNoteEdit == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.tv_alert_date;
|
||||||
|
TextView tvAlertDate = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvAlertDate == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.tv_locked;
|
||||||
|
ImageButton tvLocked = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvLocked == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.tv_modified_date;
|
||||||
|
TextView tvModifiedDate = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvModifiedDate == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.tv_unlocked;
|
||||||
|
ImageButton tvUnlocked = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvUnlocked == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NoteEditBinding((FrameLayout) rootView, addImgBtn, btnSetBgColor, fontSizeSelector,
|
||||||
|
iatBtn, ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect, ivBgRed,
|
||||||
|
ivBgRedSelect, ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect, ivLargeSelect,
|
||||||
|
ivMediumSelect, ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal, llFontSmall,
|
||||||
|
llFontSuper, noteBgColorSelector, noteEditList, noteEditView, noteTitle, numWord,
|
||||||
|
svNoteEdit, tvAlertDate, tvLocked, tvModifiedDate, tvUnlocked);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -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.CheckBox;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
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;
|
||||||
|
import net.micode.notes.ui.NoteEditText;
|
||||||
|
|
||||||
|
public final class NoteEditListItemBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final CheckBox cbEditItem;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final NoteEditText etEditText;
|
||||||
|
|
||||||
|
private NoteEditListItemBinding(@NonNull LinearLayout rootView, @NonNull CheckBox cbEditItem,
|
||||||
|
@NonNull NoteEditText etEditText) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.cbEditItem = cbEditItem;
|
||||||
|
this.etEditText = etEditText;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.note_edit_list_item, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditListItemBinding 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.cb_edit_item;
|
||||||
|
CheckBox cbEditItem = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (cbEditItem == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.et_edit_text;
|
||||||
|
NoteEditText etEditText = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (etEditText == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NoteEditListItemBinding((LinearLayout) rootView, cbEditItem, etEditText);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,119 @@
|
|||||||
|
// 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.CheckBox;
|
||||||
|
import android.widget.FrameLayout;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
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 NoteItemBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final FrameLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final CheckBox checkbox;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView ivAlertIcon;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final FrameLayout noteItem;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView tvName;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView tvTime;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView tvTitle;
|
||||||
|
|
||||||
|
private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox,
|
||||||
|
@NonNull ImageView ivAlertIcon, @NonNull FrameLayout noteItem, @NonNull TextView tvName,
|
||||||
|
@NonNull TextView tvTime, @NonNull TextView tvTitle) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.checkbox = checkbox;
|
||||||
|
this.ivAlertIcon = ivAlertIcon;
|
||||||
|
this.noteItem = noteItem;
|
||||||
|
this.tvName = tvName;
|
||||||
|
this.tvTime = tvTime;
|
||||||
|
this.tvTitle = tvTitle;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public FrameLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.note_item, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteItemBinding 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 = com.google.android.material.R.id.checkbox;
|
||||||
|
CheckBox checkbox = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (checkbox == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.iv_alert_icon;
|
||||||
|
ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (ivAlertIcon == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
FrameLayout noteItem = (FrameLayout) rootView;
|
||||||
|
|
||||||
|
id = R.id.tv_name;
|
||||||
|
TextView tvName = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvName == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.tv_time;
|
||||||
|
TextView tvTime = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvTime == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.tv_title;
|
||||||
|
TextView tvTitle = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (tvTitle == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, noteItem, tvName,
|
||||||
|
tvTime, tvTitle);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -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));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,75 @@
|
|||||||
|
// 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.LinearLayout;
|
||||||
|
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 NoteListDropdownMenuBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final LinearLayout navigationBar;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button selectionMenu;
|
||||||
|
|
||||||
|
private NoteListDropdownMenuBinding(@NonNull LinearLayout rootView,
|
||||||
|
@NonNull LinearLayout navigationBar, @NonNull Button selectionMenu) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.navigationBar = navigationBar;
|
||||||
|
this.selectionMenu = selectionMenu;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.note_list_dropdown_menu, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteListDropdownMenuBinding 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: {
|
||||||
|
LinearLayout navigationBar = (LinearLayout) rootView;
|
||||||
|
|
||||||
|
id = R.id.selection_menu;
|
||||||
|
Button selectionMenu = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (selectionMenu == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NoteListDropdownMenuBinding((LinearLayout) rootView, navigationBar, selectionMenu);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,81 @@
|
|||||||
|
// 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.LinearLayout;
|
||||||
|
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 SettingsHeaderBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView prefenereceSyncStatusTextview;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button preferenceSyncButton;
|
||||||
|
|
||||||
|
private SettingsHeaderBinding(@NonNull LinearLayout rootView,
|
||||||
|
@NonNull TextView prefenereceSyncStatusTextview, @NonNull Button preferenceSyncButton) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.prefenereceSyncStatusTextview = prefenereceSyncStatusTextview;
|
||||||
|
this.preferenceSyncButton = preferenceSyncButton;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.settings_header, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static SettingsHeaderBinding 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.prefenerece_sync_status_textview;
|
||||||
|
TextView prefenereceSyncStatusTextview = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (prefenereceSyncStatusTextview == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.preference_sync_button;
|
||||||
|
Button preferenceSyncButton = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (preferenceSyncButton == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new SettingsHeaderBinding((LinearLayout) rootView, prefenereceSyncStatusTextview,
|
||||||
|
preferenceSyncButton);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -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.FrameLayout;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
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 Widget2xBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final FrameLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView widgetBgImage;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView widgetText;
|
||||||
|
|
||||||
|
private Widget2xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage,
|
||||||
|
@NonNull TextView widgetText) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.widgetBgImage = widgetBgImage;
|
||||||
|
this.widgetText = widgetText;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public FrameLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static Widget2xBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static Widget2xBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.widget_2x, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static Widget2xBinding 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.widget_bg_image;
|
||||||
|
ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (widgetBgImage == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.widget_text;
|
||||||
|
TextView widgetText = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (widgetText == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Widget2xBinding((FrameLayout) rootView, widgetBgImage, widgetText);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -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.FrameLayout;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
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 Widget4xBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final FrameLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageView widgetBgImage;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final TextView widgetText;
|
||||||
|
|
||||||
|
private Widget4xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage,
|
||||||
|
@NonNull TextView widgetText) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.widgetBgImage = widgetBgImage;
|
||||||
|
this.widgetText = widgetText;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public FrameLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static Widget4xBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static Widget4xBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.widget_4x, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static Widget4xBinding 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.widget_bg_image;
|
||||||
|
ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (widgetBgImage == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.widget_text;
|
||||||
|
TextView widgetText = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (widgetText == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Widget4xBinding((FrameLayout) rootView, widgetBgImage, widgetText);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
/**
|
||||||
|
* Automatically generated file. DO NOT MODIFY
|
||||||
|
*/
|
||||||
|
package net.micode.notes;
|
||||||
|
|
||||||
|
public final class BuildConfig {
|
||||||
|
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||||
|
public static final String APPLICATION_ID = "net.micode.notes";
|
||||||
|
public static final String BUILD_TYPE = "debug";
|
||||||
|
public static final int VERSION_CODE = 1;
|
||||||
|
public static final String VERSION_NAME = "1.0";
|
||||||
|
}
|
@ -0,0 +1 @@
|
|||||||
|
{}
|
@ -0,0 +1,2 @@
|
|||||||
|
appMetadataVersion=1.0
|
||||||
|
androidGradlePluginVersion=7.0.2
|
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"artifactType": {
|
||||||
|
"type": "COMPATIBLE_SCREEN_MANIFEST",
|
||||||
|
"kind": "Directory"
|
||||||
|
},
|
||||||
|
"applicationId": "net.micode.notes",
|
||||||
|
"variantName": "debug",
|
||||||
|
"elements": []
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="account_dialog_title" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\account_dialog_title.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/account_dialog_title_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="42" endOffset="14"/></Target><Target id="@+id/account_dialog_title" view="TextView"><Expressions/><location startLine="23" startOffset="4" endLine="32" endOffset="45"/></Target><Target id="@+id/account_dialog_subtitle" view="TextView"><Expressions/><location startLine="34" startOffset="4" endLine="40" endOffset="33"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_main" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/activity_main_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="34" endOffset="51"/></Target><Target id="@+id/editTextTextPersonName" view="EditText"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target><Target id="@+id/button" view="Button"><Expressions/><location startLine="22" startOffset="4" endLine="33" endOffset="74"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_splash" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_splash.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/activity_splash_0" view="FrameLayout"><Expressions/><location startLine="1" startOffset="0" endLine="65" endOffset="13"/></Target><Target id="@+id/fullscreen_content" view="TextView"><Expressions/><location startLine="12" startOffset="4" endLine="21" endOffset="34"/></Target><Target id="@+id/fullscreen_content_controls" view="LinearLayout"><Expressions/><location startLine="30" startOffset="8" endLine="48" endOffset="22"/></Target><Target id="@+id/dummy_button" view="Button"><Expressions/><location startLine="39" startOffset="12" endLine="46" endOffset="45"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="add_account_text" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\add_account_text.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/add_account_text_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="31" endOffset="14"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="datetime_picker" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\datetime_picker.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/datetime_picker_0" view="LinearLayout"><Expressions/><location startLine="15" startOffset="0" endLine="55" endOffset="14"/></Target><Target id="@+id/date" view="NumberPicker"><Expressions/><location startLine="21" startOffset="4" endLine="27" endOffset="9"/></Target><Target id="@+id/hour" view="NumberPicker"><Expressions/><location startLine="29" startOffset="4" endLine="36" endOffset="9"/></Target><Target id="@+id/minute" view="NumberPicker"><Expressions/><location startLine="38" startOffset="4" endLine="45" endOffset="9"/></Target><Target id="@+id/amPm" view="NumberPicker"><Expressions/><location startLine="47" startOffset="4" endLine="54" endOffset="9"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_edit_text" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\dialog_edit_text.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.EditText" rootNodeViewId="@+id/et_foler_name"><Targets><Target id="@+id/et_foler_name" tag="layout/dialog_edit_text_0" view="EditText"><Expressions/><location startLine="17" startOffset="0" endLine="22" endOffset="41"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fingerprint_dialog" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\fingerprint_dialog.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fingerprint_dialog_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="51" endOffset="14"/></Target><Target id="@+id/error_msg" view="TextView"><Expressions/><location startLine="23" startOffset="4" endLine="32" endOffset="9"/></Target><Target id="@+id/cancel" view="TextView"><Expressions/><location startLine="41" startOffset="4" endLine="49" endOffset="9"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="folder_list_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\folder_list_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/folder_list_item_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="28" endOffset="14"/></Target><Target id="@+id/tv_folder_name" view="TextView"><Expressions/><location startLine="22" startOffset="4" endLine="27" endOffset="67"/></Target></Targets></Layout>
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_edit_list_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit_list_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/note_edit_list_item_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="38" endOffset="14"/></Target><Target id="@+id/cb_edit_item" view="CheckBox"><Expressions/><location startLine="22" startOffset="4" endLine="28" endOffset="43"/></Target><Target id="@+id/et_edit_text" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="30" startOffset="4" endLine="37" endOffset="36"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout" rootNodeViewId="@+id/note_item"><Targets><Target id="@+id/note_item" tag="layout/note_item_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="78" endOffset="13"/></Target><Target id="@+id/tv_name" view="TextView"><Expressions/><location startLine="36" startOffset="12" endLine="42" endOffset="43"/></Target><Target id="@+id/tv_title" view="TextView"><Expressions/><location startLine="49" startOffset="16" endLine="54" endOffset="47"/></Target><Target id="@+id/tv_time" view="TextView"><Expressions/><location startLine="56" startOffset="16" endLine="60" endOffset="81"/></Target><Target id="@android:id/checkbox" view="CheckBox"><Expressions/><location startLine="64" startOffset="8" endLine="70" endOffset="39"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="73" startOffset="4" endLine="77" endOffset="44"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_list_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="63" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="31" startOffset="8" endLine="40" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="42" startOffset="8" endLine="50" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="53" startOffset="4" endLine="62" endOffset="38"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list_dropdown_menu" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list_dropdown_menu.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout" rootNodeViewId="@+id/navigation_bar"><Targets><Target id="@+id/navigation_bar" tag="layout/note_list_dropdown_menu_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="31" endOffset="14"/></Target><Target id="@+id/selection_menu" view="Button"><Expressions/><location startLine="24" startOffset="4" endLine="30" endOffset="57"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list_footer" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list_footer.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.view.View"><Targets><Target tag="layout/note_list_footer_0" view="View"><Expressions/><location startLine="17" startOffset="0" endLine="23" endOffset="51"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="settings_header" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\settings_header.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/settings_header_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="40" endOffset="14"/></Target><Target id="@+id/preference_sync_button" view="Button"><Expressions/><location startLine="23" startOffset="4" endLine="31" endOffset="67"/></Target><Target id="@+id/prefenerece_sync_status_textview" view="TextView"><Expressions/><location startLine="33" startOffset="4" endLine="38" endOffset="34"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="widget_2x" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\widget_2x.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/widget_2x_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="36" endOffset="13"/></Target><Target id="@+id/widget_bg_image" view="ImageView"><Expressions/><location startLine="21" startOffset="4" endLine="24" endOffset="45"/></Target><Target id="@+id/widget_text" view="TextView"><Expressions/><location startLine="25" startOffset="4" endLine="35" endOffset="45"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="widget_4x" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\widget_4x.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/widget_4x_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="38" endOffset="13"/></Target><Target id="@+id/widget_bg_image" view="ImageView"><Expressions/><location startLine="22" startOffset="4" endLine="25" endOffset="45"/></Target><Target id="@+id/widget_text" view="TextView"><Expressions/><location startLine="27" startOffset="4" endLine="37" endOffset="45"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="account_dialog_title" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\account_dialog_title.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/account_dialog_title_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="42" endOffset="14"/></Target><Target id="@+id/account_dialog_title" view="TextView"><Expressions/><location startLine="23" startOffset="4" endLine="32" endOffset="45"/></Target><Target id="@+id/account_dialog_subtitle" view="TextView"><Expressions/><location startLine="34" startOffset="4" endLine="40" endOffset="33"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_main" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/activity_main_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="34" endOffset="51"/></Target><Target id="@+id/editTextTextPersonName" view="EditText"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target><Target id="@+id/button" view="Button"><Expressions/><location startLine="22" startOffset="4" endLine="33" endOffset="74"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_splash" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_splash.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/activity_splash_0" view="FrameLayout"><Expressions/><location startLine="1" startOffset="0" endLine="65" endOffset="13"/></Target><Target id="@+id/fullscreen_content" view="TextView"><Expressions/><location startLine="12" startOffset="4" endLine="21" endOffset="34"/></Target><Target id="@+id/fullscreen_content_controls" view="LinearLayout"><Expressions/><location startLine="30" startOffset="8" endLine="48" endOffset="22"/></Target><Target id="@+id/dummy_button" view="Button"><Expressions/><location startLine="39" startOffset="12" endLine="46" endOffset="45"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="add_account_text" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\add_account_text.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/add_account_text_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="31" endOffset="14"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="datetime_picker" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\datetime_picker.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/datetime_picker_0" view="LinearLayout"><Expressions/><location startLine="15" startOffset="0" endLine="55" endOffset="14"/></Target><Target id="@+id/date" view="NumberPicker"><Expressions/><location startLine="21" startOffset="4" endLine="27" endOffset="9"/></Target><Target id="@+id/hour" view="NumberPicker"><Expressions/><location startLine="29" startOffset="4" endLine="36" endOffset="9"/></Target><Target id="@+id/minute" view="NumberPicker"><Expressions/><location startLine="38" startOffset="4" endLine="45" endOffset="9"/></Target><Target id="@+id/amPm" view="NumberPicker"><Expressions/><location startLine="47" startOffset="4" endLine="54" endOffset="9"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_edit_text" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\dialog_edit_text.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.EditText" rootNodeViewId="@+id/et_foler_name"><Targets><Target id="@+id/et_foler_name" tag="layout/dialog_edit_text_0" view="EditText"><Expressions/><location startLine="17" startOffset="0" endLine="22" endOffset="41"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fingerprint_dialog" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\fingerprint_dialog.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fingerprint_dialog_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="51" endOffset="14"/></Target><Target id="@+id/error_msg" view="TextView"><Expressions/><location startLine="23" startOffset="4" endLine="32" endOffset="9"/></Target><Target id="@+id/cancel" view="TextView"><Expressions/><location startLine="41" startOffset="4" endLine="49" endOffset="9"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="folder_list_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\folder_list_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/folder_list_item_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="28" endOffset="14"/></Target><Target id="@+id/tv_folder_name" view="TextView"><Expressions/><location startLine="22" startOffset="4" endLine="27" endOffset="67"/></Target></Targets></Layout>
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_edit_list_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit_list_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/note_edit_list_item_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="38" endOffset="14"/></Target><Target id="@+id/cb_edit_item" view="CheckBox"><Expressions/><location startLine="22" startOffset="4" endLine="28" endOffset="43"/></Target><Target id="@+id/et_edit_text" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="30" startOffset="4" endLine="37" endOffset="36"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout" rootNodeViewId="@+id/note_item"><Targets><Target id="@+id/note_item" tag="layout/note_item_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="78" endOffset="13"/></Target><Target id="@+id/tv_name" view="TextView"><Expressions/><location startLine="36" startOffset="12" endLine="42" endOffset="43"/></Target><Target id="@+id/tv_title" view="TextView"><Expressions/><location startLine="49" startOffset="16" endLine="54" endOffset="47"/></Target><Target id="@+id/tv_time" view="TextView"><Expressions/><location startLine="56" startOffset="16" endLine="60" endOffset="81"/></Target><Target id="@android:id/checkbox" view="CheckBox"><Expressions/><location startLine="64" startOffset="8" endLine="70" endOffset="39"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="73" startOffset="4" endLine="77" endOffset="44"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_list_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="63" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="31" startOffset="8" endLine="40" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="42" startOffset="8" endLine="50" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="53" startOffset="4" endLine="62" endOffset="38"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list_dropdown_menu" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list_dropdown_menu.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout" rootNodeViewId="@+id/navigation_bar"><Targets><Target id="@+id/navigation_bar" tag="layout/note_list_dropdown_menu_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="31" endOffset="14"/></Target><Target id="@+id/selection_menu" view="Button"><Expressions/><location startLine="24" startOffset="4" endLine="30" endOffset="57"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list_footer" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list_footer.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.view.View"><Targets><Target tag="layout/note_list_footer_0" view="View"><Expressions/><location startLine="17" startOffset="0" endLine="23" endOffset="51"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="settings_header" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\settings_header.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/settings_header_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="40" endOffset="14"/></Target><Target id="@+id/preference_sync_button" view="Button"><Expressions/><location startLine="23" startOffset="4" endLine="31" endOffset="67"/></Target><Target id="@+id/prefenerece_sync_status_textview" view="TextView"><Expressions/><location startLine="33" startOffset="4" endLine="38" endOffset="34"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="widget_2x" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\widget_2x.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/widget_2x_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="36" endOffset="13"/></Target><Target id="@+id/widget_bg_image" view="ImageView"><Expressions/><location startLine="21" startOffset="4" endLine="24" endOffset="45"/></Target><Target id="@+id/widget_text" view="TextView"><Expressions/><location startLine="25" startOffset="4" endLine="35" endOffset="45"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="widget_4x" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\widget_4x.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/widget_4x_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="38" endOffset="13"/></Target><Target id="@+id/widget_bg_image" view="ImageView"><Expressions/><location startLine="22" startOffset="4" endLine="25" endOffset="45"/></Target><Target id="@+id/widget_text" view="TextView"><Expressions/><location startLine="27" startOffset="4" endLine="37" endOffset="45"/></Target></Targets></Layout>
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1 @@
|
|||||||
|
{"enableV1Signing":true,"enableV2Signing":true,"enableV3Signing":false,"enableV4Signing":false}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue