| @@ -56,7 +56,7 @@ | |||
| <property name="cidr.known.project.marker" value="true" /> | |||
| <property name="code.cleanup.on.save" value="true" /> | |||
| <property name="format.on.save" value="true" /> | |||
| <property name="last_opened_file_path" value="$PROJECT_DIR$/app/src/main/java/ch/spherIC/recurvebowsight/utilities" /> | |||
| <property name="last_opened_file_path" value="$PROJECT_DIR$/.." /> | |||
| <property name="optimize.imports.on.save" value="true" /> | |||
| <property name="settings.editor.selected.configurable" value="reference.settingsdialog.IDE.editor.colors.Java" /> | |||
| </component> | |||
| @@ -1,87 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.drawerlayout.widget.DrawerLayout; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import androidx.viewbinding.ViewBindings; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import com.google.android.material.navigation.NavigationView; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class ActivityMainBinding implements ViewBinding { | |||
| @NonNull | |||
| private final DrawerLayout rootView; | |||
| @NonNull | |||
| public final AppBarMainBinding appBarMain; | |||
| @NonNull | |||
| public final DrawerLayout drawerLayout; | |||
| @NonNull | |||
| public final NavigationView navView; | |||
| private ActivityMainBinding(@NonNull DrawerLayout rootView, @NonNull AppBarMainBinding appBarMain, | |||
| @NonNull DrawerLayout drawerLayout, @NonNull NavigationView navView) { | |||
| this.rootView = rootView; | |||
| this.appBarMain = appBarMain; | |||
| this.drawerLayout = drawerLayout; | |||
| this.navView = navView; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public DrawerLayout 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.app_bar_main; | |||
| View appBarMain = ViewBindings.findChildViewById(rootView, id); | |||
| if (appBarMain == null) { | |||
| break missingId; | |||
| } | |||
| AppBarMainBinding binding_appBarMain = AppBarMainBinding.bind(appBarMain); | |||
| DrawerLayout drawerLayout = (DrawerLayout) rootView; | |||
| id = R.id.nav_view; | |||
| NavigationView navView = ViewBindings.findChildViewById(rootView, id); | |||
| if (navView == null) { | |||
| break missingId; | |||
| } | |||
| return new ActivityMainBinding((DrawerLayout) rootView, binding_appBarMain, drawerLayout, | |||
| navView); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,80 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.appcompat.widget.Toolbar; | |||
| import androidx.coordinatorlayout.widget.CoordinatorLayout; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import androidx.viewbinding.ViewBindings; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import com.google.android.material.floatingactionbutton.FloatingActionButton; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class AppBarMainBinding implements ViewBinding { | |||
| @NonNull | |||
| private final CoordinatorLayout rootView; | |||
| @NonNull | |||
| public final FloatingActionButton fab; | |||
| @NonNull | |||
| public final Toolbar toolbar; | |||
| private AppBarMainBinding(@NonNull CoordinatorLayout rootView, @NonNull FloatingActionButton fab, | |||
| @NonNull Toolbar toolbar) { | |||
| this.rootView = rootView; | |||
| this.fab = fab; | |||
| this.toolbar = toolbar; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public CoordinatorLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static AppBarMainBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static AppBarMainBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.app_bar_main, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static AppBarMainBinding 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.fab; | |||
| FloatingActionButton fab = ViewBindings.findChildViewById(rootView, id); | |||
| if (fab == null) { | |||
| break missingId; | |||
| } | |||
| id = R.id.toolbar; | |||
| Toolbar toolbar = ViewBindings.findChildViewById(rootView, id); | |||
| if (toolbar == null) { | |||
| break missingId; | |||
| } | |||
| return new AppBarMainBinding((CoordinatorLayout) rootView, fab, toolbar); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,52 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.constraintlayout.widget.ConstraintLayout; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| public final class ContentMainBinding implements ViewBinding { | |||
| @NonNull | |||
| private final ConstraintLayout rootView; | |||
| private ContentMainBinding(@NonNull ConstraintLayout rootView) { | |||
| this.rootView = rootView; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public ConstraintLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static ContentMainBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static ContentMainBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.content_main, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static ContentMainBinding bind(@NonNull View rootView) { | |||
| if (rootView == null) { | |||
| throw new NullPointerException("rootView"); | |||
| } | |||
| return new ContentMainBinding((ConstraintLayout) rootView); | |||
| } | |||
| } | |||
| @@ -1,68 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import android.widget.TextView; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.constraintlayout.widget.ConstraintLayout; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import androidx.viewbinding.ViewBindings; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class FragmentAboutBinding implements ViewBinding { | |||
| @NonNull | |||
| private final ConstraintLayout rootView; | |||
| @NonNull | |||
| public final TextView textGallery; | |||
| private FragmentAboutBinding(@NonNull ConstraintLayout rootView, @NonNull TextView textGallery) { | |||
| this.rootView = rootView; | |||
| this.textGallery = textGallery; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public ConstraintLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static FragmentAboutBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static FragmentAboutBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.fragment_about, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static FragmentAboutBinding 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.text_gallery; | |||
| TextView textGallery = ViewBindings.findChildViewById(rootView, id); | |||
| if (textGallery == null) { | |||
| break missingId; | |||
| } | |||
| return new FragmentAboutBinding((ConstraintLayout) rootView, textGallery); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,69 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import android.widget.TextView; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.constraintlayout.widget.ConstraintLayout; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import androidx.viewbinding.ViewBindings; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class FragmentCalcsightBinding implements ViewBinding { | |||
| @NonNull | |||
| private final ConstraintLayout rootView; | |||
| @NonNull | |||
| public final TextView textCalcsight; | |||
| private FragmentCalcsightBinding(@NonNull ConstraintLayout rootView, | |||
| @NonNull TextView textCalcsight) { | |||
| this.rootView = rootView; | |||
| this.textCalcsight = textCalcsight; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public ConstraintLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static FragmentCalcsightBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static FragmentCalcsightBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.fragment_calcsight, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static FragmentCalcsightBinding 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.text_calcsight; | |||
| TextView textCalcsight = ViewBindings.findChildViewById(rootView, id); | |||
| if (textCalcsight == null) { | |||
| break missingId; | |||
| } | |||
| return new FragmentCalcsightBinding((ConstraintLayout) rootView, textCalcsight); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,69 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import android.widget.TextView; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.constraintlayout.widget.ConstraintLayout; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import androidx.viewbinding.ViewBindings; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class FragmentEquipmentAddBinding implements ViewBinding { | |||
| @NonNull | |||
| private final ConstraintLayout rootView; | |||
| @NonNull | |||
| public final TextView textEquipment; | |||
| private FragmentEquipmentAddBinding(@NonNull ConstraintLayout rootView, | |||
| @NonNull TextView textEquipment) { | |||
| this.rootView = rootView; | |||
| this.textEquipment = textEquipment; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public ConstraintLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentAddBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentAddBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.fragment_equipment_add, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentAddBinding 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.text_equipment; | |||
| TextView textEquipment = ViewBindings.findChildViewById(rootView, id); | |||
| if (textEquipment == null) { | |||
| break missingId; | |||
| } | |||
| return new FragmentEquipmentAddBinding((ConstraintLayout) rootView, textEquipment); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,79 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.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 ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class FragmentEquipmentChooseBinding implements ViewBinding { | |||
| @NonNull | |||
| private final LinearLayout rootView; | |||
| @NonNull | |||
| public final TextView content; | |||
| @NonNull | |||
| public final TextView itemNumber; | |||
| private FragmentEquipmentChooseBinding(@NonNull LinearLayout rootView, @NonNull TextView content, | |||
| @NonNull TextView itemNumber) { | |||
| this.rootView = rootView; | |||
| this.content = content; | |||
| this.itemNumber = itemNumber; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public LinearLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentChooseBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentChooseBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.fragment_equipment_choose, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentChooseBinding 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.content; | |||
| TextView content = ViewBindings.findChildViewById(rootView, id); | |||
| if (content == null) { | |||
| break missingId; | |||
| } | |||
| id = R.id.item_number; | |||
| TextView itemNumber = ViewBindings.findChildViewById(rootView, id); | |||
| if (itemNumber == null) { | |||
| break missingId; | |||
| } | |||
| return new FragmentEquipmentChooseBinding((LinearLayout) rootView, content, itemNumber); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,59 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.recyclerview.widget.RecyclerView; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| public final class FragmentEquipmentChooseListBinding implements ViewBinding { | |||
| @NonNull | |||
| private final RecyclerView rootView; | |||
| @NonNull | |||
| public final RecyclerView list; | |||
| private FragmentEquipmentChooseListBinding(@NonNull RecyclerView rootView, | |||
| @NonNull RecyclerView list) { | |||
| this.rootView = rootView; | |||
| this.list = list; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public RecyclerView getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentChooseListBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentChooseListBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.fragment_equipment_choose_list, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static FragmentEquipmentChooseListBinding bind(@NonNull View rootView) { | |||
| if (rootView == null) { | |||
| throw new NullPointerException("rootView"); | |||
| } | |||
| RecyclerView list = (RecyclerView) rootView; | |||
| return new FragmentEquipmentChooseListBinding((RecyclerView) rootView, list); | |||
| } | |||
| } | |||
| @@ -1,69 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import android.widget.TextView; | |||
| import androidx.annotation.NonNull; | |||
| import androidx.annotation.Nullable; | |||
| import androidx.constraintlayout.widget.ConstraintLayout; | |||
| import androidx.viewbinding.ViewBinding; | |||
| import androidx.viewbinding.ViewBindings; | |||
| import ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class FragmentUserguideBinding implements ViewBinding { | |||
| @NonNull | |||
| private final ConstraintLayout rootView; | |||
| @NonNull | |||
| public final TextView textSlideshow; | |||
| private FragmentUserguideBinding(@NonNull ConstraintLayout rootView, | |||
| @NonNull TextView textSlideshow) { | |||
| this.rootView = rootView; | |||
| this.textSlideshow = textSlideshow; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public ConstraintLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static FragmentUserguideBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static FragmentUserguideBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.fragment_userguide, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static FragmentUserguideBinding 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.text_slideshow; | |||
| TextView textSlideshow = ViewBindings.findChildViewById(rootView, id); | |||
| if (textSlideshow == null) { | |||
| break missingId; | |||
| } | |||
| return new FragmentUserguideBinding((ConstraintLayout) rootView, textSlideshow); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,80 +0,0 @@ | |||
| // Generated by view binder compiler. Do not edit! | |||
| package ch.spherIC.recurvebowsight.databinding; | |||
| import android.view.LayoutInflater; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| 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 ch.spherIC.recurvebowsight.R; | |||
| import java.lang.NullPointerException; | |||
| import java.lang.Override; | |||
| import java.lang.String; | |||
| public final class NavHeaderMainBinding implements ViewBinding { | |||
| @NonNull | |||
| private final LinearLayout rootView; | |||
| @NonNull | |||
| public final ImageView imageView; | |||
| @NonNull | |||
| public final TextView textView; | |||
| private NavHeaderMainBinding(@NonNull LinearLayout rootView, @NonNull ImageView imageView, | |||
| @NonNull TextView textView) { | |||
| this.rootView = rootView; | |||
| this.imageView = imageView; | |||
| this.textView = textView; | |||
| } | |||
| @Override | |||
| @NonNull | |||
| public LinearLayout getRoot() { | |||
| return rootView; | |||
| } | |||
| @NonNull | |||
| public static NavHeaderMainBinding inflate(@NonNull LayoutInflater inflater) { | |||
| return inflate(inflater, null, false); | |||
| } | |||
| @NonNull | |||
| public static NavHeaderMainBinding inflate(@NonNull LayoutInflater inflater, | |||
| @Nullable ViewGroup parent, boolean attachToParent) { | |||
| View root = inflater.inflate(R.layout.nav_header_main, parent, false); | |||
| if (attachToParent) { | |||
| parent.addView(root); | |||
| } | |||
| return bind(root); | |||
| } | |||
| @NonNull | |||
| public static NavHeaderMainBinding 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.imageView; | |||
| ImageView imageView = ViewBindings.findChildViewById(rootView, id); | |||
| if (imageView == null) { | |||
| break missingId; | |||
| } | |||
| id = R.id.textView; | |||
| TextView textView = ViewBindings.findChildViewById(rootView, id); | |||
| if (textView == null) { | |||
| break missingId; | |||
| } | |||
| return new NavHeaderMainBinding((LinearLayout) rootView, imageView, textView); | |||
| } | |||
| String missingId = rootView.getResources().getResourceName(id); | |||
| throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | |||
| } | |||
| } | |||
| @@ -1,12 +0,0 @@ | |||
| /** | |||
| * Automatically generated file. DO NOT MODIFY | |||
| */ | |||
| package ch.spherIC.recurvebowsight; | |||
| public final class BuildConfig { | |||
| public static final boolean DEBUG = Boolean.parseBoolean("true"); | |||
| public static final String APPLICATION_ID = "ch.spherIC.recurvebowsight"; | |||
| public static final String BUILD_TYPE = "debug"; | |||
| public static final int VERSION_CODE = 1; | |||
| public static final String VERSION_NAME = "1.0"; | |||
| } | |||
| @@ -1 +0,0 @@ | |||
| {} | |||
| @@ -1,20 +0,0 @@ | |||
| { | |||
| "version": 3, | |||
| "artifactType": { | |||
| "type": "APK", | |||
| "kind": "Directory" | |||
| }, | |||
| "applicationId": "ch.spherIC.recurvebowsight", | |||
| "variantName": "debug", | |||
| "elements": [ | |||
| { | |||
| "type": "SINGLE", | |||
| "filters": [], | |||
| "attributes": [], | |||
| "versionCode": 1, | |||
| "versionName": "1.0", | |||
| "outputFile": "app-debug.apk" | |||
| } | |||
| ], | |||
| "elementType": "File" | |||
| } | |||
| @@ -1,2 +0,0 @@ | |||
| #- File Locator - | |||
| listingFile=../../apk/debug/output-metadata.json | |||
| @@ -1,2 +0,0 @@ | |||
| appMetadataVersion=1.1 | |||
| androidGradlePluginVersion=7.2.2 | |||
| @@ -1,10 +0,0 @@ | |||
| { | |||
| "version": 3, | |||
| "artifactType": { | |||
| "type": "COMPATIBLE_SCREEN_MANIFEST", | |||
| "kind": "Directory" | |||
| }, | |||
| "applicationId": "ch.spherIC.recurvebowsight", | |||
| "variantName": "debug", | |||
| "elements": [] | |||
| } | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\activity_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.drawerlayout.widget.DrawerLayout" rootNodeViewId="@+id/drawer_layout"><Targets><Target id="@+id/drawer_layout" tag="layout/activity_main_0" view="androidx.drawerlayout.widget.DrawerLayout"><Expressions/><location startLine="1" startOffset="0" endLine="29" endOffset="43"/></Target><Target id="@+id/app_bar_main" tag="layout/activity_main_0" include="app_bar_main"><Expressions/><location startLine="13" startOffset="4" endLine="17" endOffset="46"/></Target><Target id="@+id/nav_view" view="com.google.android.material.navigation.NavigationView"><Expressions/><location startLine="19" startOffset="4" endLine="26" endOffset="47"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="app_bar_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\app_bar_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.coordinatorlayout.widget.CoordinatorLayout"><Targets><Target tag="layout/app_bar_main_0" view="androidx.coordinatorlayout.widget.CoordinatorLayout"><Expressions/><location startLine="1" startOffset="0" endLine="33" endOffset="53"/></Target><Target tag="layout/app_bar_main_0" include="content_main"><Expressions/><location startLine="31" startOffset="4" endLine="31" endOffset="44"/></Target><Target id="@+id/toolbar" view="androidx.appcompat.widget.Toolbar"><Expressions/><location startLine="13" startOffset="8" endLine="18" endOffset="72"/></Target><Target id="@+id/fab" view="com.google.android.material.floatingactionbutton.FloatingActionButton"><Expressions/><location startLine="22" startOffset="4" endLine="29" endOffset="59"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="content_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\content_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/content_main_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="19" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_about" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_about.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_about_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_gallery" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_calcsight" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_calcsight.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_calcsight_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_calcsight" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_equipment_add" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_equipment_add.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_equipment_add_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_equipment" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_equipment_choose" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_equipment_choose.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_equipment_choose_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="19" endOffset="14"/></Target><Target id="@+id/item_number" view="TextView"><Expressions/><location startLine="6" startOffset="4" endLine="11" endOffset="63"/></Target><Target id="@+id/content" view="TextView"><Expressions/><location startLine="13" startOffset="4" endLine="18" endOffset="63"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_equipment_choose_list" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_equipment_choose_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.recyclerview.widget.RecyclerView" rootNodeViewId="@+id/list"><Targets><Target id="@+id/list" tag="layout/fragment_equipment_choose_list_0" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="1" startOffset="0" endLine="12" endOffset="56"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_userguide" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_userguide.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_userguide_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_slideshow" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="nav_header_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\nav_header_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/nav_header_main_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="33" endOffset="14"/></Target><Target id="@+id/imageView" view="ImageView"><Expressions/><location startLine="14" startOffset="4" endLine="19" endOffset="56"/></Target><Target id="@+id/textView" view="TextView"><Expressions/><location startLine="28" startOffset="4" endLine="32" endOffset="52"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\activity_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.drawerlayout.widget.DrawerLayout" rootNodeViewId="@+id/drawer_layout"><Targets><Target id="@+id/drawer_layout" tag="layout/activity_main_0" view="androidx.drawerlayout.widget.DrawerLayout"><Expressions/><location startLine="1" startOffset="0" endLine="29" endOffset="43"/></Target><Target id="@+id/app_bar_main" tag="layout/activity_main_0" include="app_bar_main"><Expressions/><location startLine="13" startOffset="4" endLine="17" endOffset="46"/></Target><Target id="@+id/nav_view" view="com.google.android.material.navigation.NavigationView"><Expressions/><location startLine="19" startOffset="4" endLine="26" endOffset="47"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="app_bar_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\app_bar_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.coordinatorlayout.widget.CoordinatorLayout"><Targets><Target tag="layout/app_bar_main_0" view="androidx.coordinatorlayout.widget.CoordinatorLayout"><Expressions/><location startLine="1" startOffset="0" endLine="33" endOffset="53"/></Target><Target tag="layout/app_bar_main_0" include="content_main"><Expressions/><location startLine="31" startOffset="4" endLine="31" endOffset="44"/></Target><Target id="@+id/toolbar" view="androidx.appcompat.widget.Toolbar"><Expressions/><location startLine="13" startOffset="8" endLine="18" endOffset="72"/></Target><Target id="@+id/fab" view="com.google.android.material.floatingactionbutton.FloatingActionButton"><Expressions/><location startLine="22" startOffset="4" endLine="29" endOffset="59"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="content_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\content_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/content_main_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="19" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_about" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_about.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_about_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_gallery" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_calcsight" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_calcsight.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_calcsight_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_calcsight" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_equipment_add" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_equipment_add.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_equipment_add_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_equipment" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_equipment_choose" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_equipment_choose.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_equipment_choose_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="19" endOffset="14"/></Target><Target id="@+id/item_number" view="TextView"><Expressions/><location startLine="6" startOffset="4" endLine="11" endOffset="63"/></Target><Target id="@+id/content" view="TextView"><Expressions/><location startLine="13" startOffset="4" endLine="18" endOffset="63"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_equipment_choose_list" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_equipment_choose_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.recyclerview.widget.RecyclerView" rootNodeViewId="@+id/list"><Targets><Target id="@+id/list" tag="layout/fragment_equipment_choose_list_0" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="1" startOffset="0" endLine="12" endOffset="56"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_userguide" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\fragment_userguide.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_userguide_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="21" endOffset="51"/></Target><Target id="@+id/text_slideshow" view="TextView"><Expressions/><location startLine="8" startOffset="4" endLine="20" endOffset="51"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="nav_header_main" modulePackage="ch.spherIC.recurvebowsight" filePath="app\src\main\res\layout\nav_header_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/nav_header_main_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="33" endOffset="14"/></Target><Target id="@+id/imageView" view="ImageView"><Expressions/><location startLine="14" startOffset="4" endLine="19" endOffset="56"/></Target><Target id="@+id/textView" view="TextView"><Expressions/><location startLine="28" startOffset="4" endLine="32" endOffset="52"/></Target></Targets></Layout> | |||
| @@ -1 +0,0 @@ | |||
| 8 | |||