Fixed issues
This commit is contained in:
+16
-15
@@ -3,7 +3,6 @@ package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.SurfaceView;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
@@ -12,6 +11,7 @@ import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.camera.view.PreviewView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
@@ -29,27 +29,28 @@ public final class FragmentVideoUiBinding implements ViewBinding {
|
||||
@NonNull
|
||||
public final Button btnStop;
|
||||
|
||||
@NonNull
|
||||
public final PreviewView cameraView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView home;
|
||||
|
||||
@NonNull
|
||||
public final ConstraintLayout lytHead;
|
||||
|
||||
@NonNull
|
||||
public final SurfaceView preview;
|
||||
|
||||
@NonNull
|
||||
public final ImageView profile;
|
||||
|
||||
private FragmentVideoUiBinding(@NonNull LinearLayout rootView,
|
||||
@NonNull TextView appCompatTextView2, @NonNull Button btnStop, @NonNull ImageView home,
|
||||
@NonNull ConstraintLayout lytHead, @NonNull SurfaceView preview, @NonNull ImageView profile) {
|
||||
@NonNull TextView appCompatTextView2, @NonNull Button btnStop,
|
||||
@NonNull PreviewView cameraView, @NonNull ImageView home, @NonNull ConstraintLayout lytHead,
|
||||
@NonNull ImageView profile) {
|
||||
this.rootView = rootView;
|
||||
this.appCompatTextView2 = appCompatTextView2;
|
||||
this.btnStop = btnStop;
|
||||
this.cameraView = cameraView;
|
||||
this.home = home;
|
||||
this.lytHead = lytHead;
|
||||
this.preview = preview;
|
||||
this.profile = profile;
|
||||
}
|
||||
|
||||
@@ -92,6 +93,12 @@ public final class FragmentVideoUiBinding implements ViewBinding {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.camera_view;
|
||||
PreviewView cameraView = ViewBindings.findChildViewById(rootView, id);
|
||||
if (cameraView == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.home;
|
||||
ImageView home = ViewBindings.findChildViewById(rootView, id);
|
||||
if (home == null) {
|
||||
@@ -104,20 +111,14 @@ public final class FragmentVideoUiBinding implements ViewBinding {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.preview;
|
||||
SurfaceView preview = ViewBindings.findChildViewById(rootView, id);
|
||||
if (preview == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.profile;
|
||||
ImageView profile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (profile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentVideoUiBinding((LinearLayout) rootView, appCompatTextView2, btnStop, home,
|
||||
lytHead, preview, profile);
|
||||
return new FragmentVideoUiBinding((LinearLayout) rootView, appCompatTextView2, btnStop,
|
||||
cameraView, home, lytHead, profile);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
|
||||
+4
-3
@@ -5,6 +5,7 @@ import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
@@ -23,7 +24,7 @@ public final class HolderVideoslistBinding implements ViewBinding {
|
||||
public final TextView videoslistId;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoslistImage;
|
||||
public final ImageView videoslistImage;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoslistPrice;
|
||||
@@ -32,7 +33,7 @@ public final class HolderVideoslistBinding implements ViewBinding {
|
||||
public final TextView videoslistUrl;
|
||||
|
||||
private HolderVideoslistBinding(@NonNull CardView rootView, @NonNull TextView videoslistId,
|
||||
@NonNull TextView videoslistImage, @NonNull TextView videoslistPrice,
|
||||
@NonNull ImageView videoslistImage, @NonNull TextView videoslistPrice,
|
||||
@NonNull TextView videoslistUrl) {
|
||||
this.rootView = rootView;
|
||||
this.videoslistId = videoslistId;
|
||||
@@ -75,7 +76,7 @@ public final class HolderVideoslistBinding implements ViewBinding {
|
||||
}
|
||||
|
||||
id = R.id.videoslist_Image;
|
||||
TextView videoslistImage = ViewBindings.findChildViewById(rootView, id);
|
||||
ImageView videoslistImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoslistImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
+3
@@ -9,6 +9,9 @@ public class SplashFragmentDirections private constructor() {
|
||||
public fun actionSplashFragmentToLoginFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_splashFragment_to_loginFragment)
|
||||
|
||||
public fun actionSplashFragmentToHomeFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_splashFragment_to_homeFragment)
|
||||
|
||||
public fun actionSplashFragmentToSignUpFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_splashFragment_to_signUpFragment)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user