parent
25ebe220e6
commit
260da9a7f2
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,3 @@
|
|||||||
|
{
|
||||||
|
"java.configuration.updateBuildConfiguration": "interactive"
|
||||||
|
}
|
@ -0,0 +1,68 @@
|
|||||||
|
// Generated by view binder compiler. Do not edit!
|
||||||
|
package net.micode.notes.databinding;
|
||||||
|
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.viewbinding.ViewBinding;
|
||||||
|
import android.viewbinding.ViewBindings;
|
||||||
|
import android.widget.ImageButton;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
import java.lang.NullPointerException;
|
||||||
|
import java.lang.Override;
|
||||||
|
import java.lang.String;
|
||||||
|
import net.micode.notes.R;
|
||||||
|
|
||||||
|
public final class NoteEditToolbarBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton btnSearch;
|
||||||
|
|
||||||
|
private NoteEditToolbarBinding(@NonNull LinearLayout rootView, @NonNull ImageButton btnSearch) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.btnSearch = btnSearch;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditToolbarBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditToolbarBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.note_edit_toolbar, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static NoteEditToolbarBinding 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_search;
|
||||||
|
ImageButton btnSearch = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnSearch == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NoteEditToolbarBinding((LinearLayout) rootView, btnSearch);
|
||||||
|
}
|
||||||
|
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.support.annotation.NonNull;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.viewbinding.ViewBinding;
|
||||||
|
import android.viewbinding.ViewBindings;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
import java.lang.NullPointerException;
|
||||||
|
import java.lang.Override;
|
||||||
|
import java.lang.String;
|
||||||
|
import net.micode.notes.R;
|
||||||
|
|
||||||
|
public final class SearchToolbarBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button btnSearchCancel;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final Button btnSearchConfirm;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final EditText searchEditText;
|
||||||
|
|
||||||
|
private SearchToolbarBinding(@NonNull LinearLayout rootView, @NonNull Button btnSearchCancel,
|
||||||
|
@NonNull Button btnSearchConfirm, @NonNull EditText searchEditText) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.btnSearchCancel = btnSearchCancel;
|
||||||
|
this.btnSearchConfirm = btnSearchConfirm;
|
||||||
|
this.searchEditText = searchEditText;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static SearchToolbarBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static SearchToolbarBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.search_toolbar, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static SearchToolbarBinding 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_search_cancel;
|
||||||
|
Button btnSearchCancel = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnSearchCancel == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.btn_search_confirm;
|
||||||
|
Button btnSearchConfirm = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnSearchConfirm == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.search_edit_text;
|
||||||
|
EditText searchEditText = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (searchEditText == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new SearchToolbarBinding((LinearLayout) rootView, btnSearchCancel, btnSearchConfirm,
|
||||||
|
searchEditText);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,101 @@
|
|||||||
|
// Generated by view binder compiler. Do not edit!
|
||||||
|
package net.micode.notes.databinding;
|
||||||
|
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.viewbinding.ViewBinding;
|
||||||
|
import android.viewbinding.ViewBindings;
|
||||||
|
import android.widget.ImageButton;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
import java.lang.NullPointerException;
|
||||||
|
import java.lang.Override;
|
||||||
|
import java.lang.String;
|
||||||
|
import net.micode.notes.R;
|
||||||
|
|
||||||
|
public final class TextFormatToolbarBinding implements ViewBinding {
|
||||||
|
@NonNull
|
||||||
|
private final LinearLayout rootView;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton btnFormatBold;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton btnFormatHighlight;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton btnFormatItalic;
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public final ImageButton btnFormatStrikethrough;
|
||||||
|
|
||||||
|
private TextFormatToolbarBinding(@NonNull LinearLayout rootView,
|
||||||
|
@NonNull ImageButton btnFormatBold, @NonNull ImageButton btnFormatHighlight,
|
||||||
|
@NonNull ImageButton btnFormatItalic, @NonNull ImageButton btnFormatStrikethrough) {
|
||||||
|
this.rootView = rootView;
|
||||||
|
this.btnFormatBold = btnFormatBold;
|
||||||
|
this.btnFormatHighlight = btnFormatHighlight;
|
||||||
|
this.btnFormatItalic = btnFormatItalic;
|
||||||
|
this.btnFormatStrikethrough = btnFormatStrikethrough;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@NonNull
|
||||||
|
public LinearLayout getRoot() {
|
||||||
|
return rootView;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static TextFormatToolbarBinding inflate(@NonNull LayoutInflater inflater) {
|
||||||
|
return inflate(inflater, null, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static TextFormatToolbarBinding inflate(@NonNull LayoutInflater inflater,
|
||||||
|
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||||
|
View root = inflater.inflate(R.layout.text_format_toolbar, parent, false);
|
||||||
|
if (attachToParent) {
|
||||||
|
parent.addView(root);
|
||||||
|
}
|
||||||
|
return bind(root);
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
public static TextFormatToolbarBinding 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_format_bold;
|
||||||
|
ImageButton btnFormatBold = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnFormatBold == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.btn_format_highlight;
|
||||||
|
ImageButton btnFormatHighlight = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnFormatHighlight == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.btn_format_italic;
|
||||||
|
ImageButton btnFormatItalic = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnFormatItalic == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
id = R.id.btn_format_strikethrough;
|
||||||
|
ImageButton btnFormatStrikethrough = ViewBindings.findChildViewById(rootView, id);
|
||||||
|
if (btnFormatStrikethrough == null) {
|
||||||
|
break missingId;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new TextFormatToolbarBinding((LinearLayout) rootView, btnFormatBold,
|
||||||
|
btnFormatHighlight, btnFormatItalic, btnFormatStrikethrough);
|
||||||
|
}
|
||||||
|
String missingId = rootView.getResources().getResourceName(id);
|
||||||
|
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||||
|
}
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
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_toolbar" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit_toolbar.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/note_edit_toolbar_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="19" endOffset="14"/></Target><Target id="@+id/btn_search" view="ImageButton"><Expressions/><location startLine="10" startOffset="4" endLine="17" endOffset="40"/></Target></Targets></Layout>
|
@ -1 +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="8" startOffset="0" endLine="51" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="20" startOffset="8" endLine="29" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="32" startOffset="8" endLine="40" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="44" startOffset="4" endLine="50" endOffset="41"/></Target></Targets></Layout>
|
<?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="8" startOffset="0" endLine="50" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="19" startOffset="8" endLine="28" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="31" startOffset="8" endLine="39" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="43" startOffset="4" endLine="49" endOffset="41"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="search_toolbar" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\search_toolbar.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/search_toolbar_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="41" endOffset="14"/></Target><Target id="@+id/search_edit_text" view="EditText"><Expressions/><location startLine="9" startOffset="4" endLine="19" endOffset="34"/></Target><Target id="@+id/btn_search_cancel" view="Button"><Expressions/><location startLine="21" startOffset="4" endLine="29" endOffset="41"/></Target><Target id="@+id/btn_search_confirm" view="Button"><Expressions/><location startLine="31" startOffset="4" endLine="39" endOffset="41"/></Target></Targets></Layout>
|
@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="text_format_toolbar" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\text_format_toolbar.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/text_format_toolbar_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="40" endOffset="14"/></Target><Target id="@+id/btn_format_bold" view="ImageButton"><Expressions/><location startLine="8" startOffset="4" endLine="14" endOffset="30"/></Target><Target id="@+id/btn_format_italic" view="ImageButton"><Expressions/><location startLine="16" startOffset="4" endLine="22" endOffset="30"/></Target><Target id="@+id/btn_format_strikethrough" view="ImageButton"><Expressions/><location startLine="24" startOffset="4" endLine="30" endOffset="30"/></Target><Target id="@+id/btn_format_highlight" view="ImageButton"><Expressions/><location startLine="32" startOffset="4" endLine="38" endOffset="30"/></Target></Targets></Layout>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue