This commit is contained in:
Viktoria Polyakova
2026-01-30 16:58:30 +03:00
parent a5ed6b8664
commit 9f8b968452
249 changed files with 32198 additions and 0 deletions

View File

@@ -0,0 +1,93 @@
// Generated by view binder compiler. Do not edit!
package com.crm.chat.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ProgressBar;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.appcompat.widget.Toolbar;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.recyclerview.widget.RecyclerView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.crm.chat.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ActivityGroupChatInfoBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
@NonNull
public final ProgressBar loadingProgressBar;
@NonNull
public final RecyclerView membersRecyclerView;
@NonNull
public final Toolbar toolbar;
private ActivityGroupChatInfoBinding(@NonNull ConstraintLayout rootView,
@NonNull ProgressBar loadingProgressBar, @NonNull RecyclerView membersRecyclerView,
@NonNull Toolbar toolbar) {
this.rootView = rootView;
this.loadingProgressBar = loadingProgressBar;
this.membersRecyclerView = membersRecyclerView;
this.toolbar = toolbar;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityGroupChatInfoBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityGroupChatInfoBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_group_chat_info, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityGroupChatInfoBinding 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.loadingProgressBar;
ProgressBar loadingProgressBar = ViewBindings.findChildViewById(rootView, id);
if (loadingProgressBar == null) {
break missingId;
}
id = R.id.membersRecyclerView;
RecyclerView membersRecyclerView = ViewBindings.findChildViewById(rootView, id);
if (membersRecyclerView == null) {
break missingId;
}
id = R.id.toolbar;
Toolbar toolbar = ViewBindings.findChildViewById(rootView, id);
if (toolbar == null) {
break missingId;
}
return new ActivityGroupChatInfoBinding((ConstraintLayout) rootView, loadingProgressBar,
membersRecyclerView, toolbar);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

View File

@@ -0,0 +1,112 @@
// Generated by view binder compiler. Do not edit!
package com.crm.chat.databinding;
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;
import androidx.cardview.widget.CardView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.crm.chat.R;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
public final class ItemGroupMemberBinding implements ViewBinding {
@NonNull
private final CardView rootView;
@NonNull
public final ImageView arrowIcon;
@NonNull
public final ImageView userAvatarImageView;
@NonNull
public final TextView userEmailTextView;
@NonNull
public final TextView userNameTextView;
@NonNull
public final TextView userPhoneTextView;
private ItemGroupMemberBinding(@NonNull CardView rootView, @NonNull ImageView arrowIcon,
@NonNull ImageView userAvatarImageView, @NonNull TextView userEmailTextView,
@NonNull TextView userNameTextView, @NonNull TextView userPhoneTextView) {
this.rootView = rootView;
this.arrowIcon = arrowIcon;
this.userAvatarImageView = userAvatarImageView;
this.userEmailTextView = userEmailTextView;
this.userNameTextView = userNameTextView;
this.userPhoneTextView = userPhoneTextView;
}
@Override
@NonNull
public CardView getRoot() {
return rootView;
}
@NonNull
public static ItemGroupMemberBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ItemGroupMemberBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.item_group_member, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ItemGroupMemberBinding 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.arrowIcon;
ImageView arrowIcon = ViewBindings.findChildViewById(rootView, id);
if (arrowIcon == null) {
break missingId;
}
id = R.id.userAvatarImageView;
ImageView userAvatarImageView = ViewBindings.findChildViewById(rootView, id);
if (userAvatarImageView == null) {
break missingId;
}
id = R.id.userEmailTextView;
TextView userEmailTextView = ViewBindings.findChildViewById(rootView, id);
if (userEmailTextView == null) {
break missingId;
}
id = R.id.userNameTextView;
TextView userNameTextView = ViewBindings.findChildViewById(rootView, id);
if (userNameTextView == null) {
break missingId;
}
id = R.id.userPhoneTextView;
TextView userPhoneTextView = ViewBindings.findChildViewById(rootView, id);
if (userPhoneTextView == null) {
break missingId;
}
return new ItemGroupMemberBinding((CardView) rootView, arrowIcon, userAvatarImageView,
userEmailTextView, userNameTextView, userPhoneTextView);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}