discord-jadx/app/src/main/java/com/discord/databinding/EmptyFriendsStateContactSyn...

59 lines
2.2 KiB
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.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.viewbinding.ViewBinding;
import com.google.android.material.button.MaterialButton;
public final class EmptyFriendsStateContactSyncViewBinding implements ViewBinding {
@NonNull
public final View a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
2021-06-27 20:53:42 +00:00
public final MaterialButton f1607c;
2021-06-27 20:44:35 +00:00
@NonNull
public final TextView d;
public EmptyFriendsStateContactSyncViewBinding(@NonNull View view, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull ImageView imageView, @NonNull TextView textView2) {
this.a = view;
this.b = textView;
2021-06-27 20:53:42 +00:00
this.f1607c = materialButton;
2021-06-27 20:44:35 +00:00
this.d = textView2;
}
@NonNull
public static EmptyFriendsStateContactSyncViewBinding a(@NonNull LayoutInflater layoutInflater, @NonNull ViewGroup viewGroup) {
layoutInflater.inflate(2131558485, viewGroup);
int i = 2131362824;
TextView textView = (TextView) viewGroup.findViewById(2131362824);
if (textView != null) {
2021-06-27 20:53:42 +00:00
i = 2131363028;
MaterialButton materialButton = (MaterialButton) viewGroup.findViewById(2131363028);
2021-06-27 20:44:35 +00:00
if (materialButton != null) {
2021-06-27 20:53:42 +00:00
i = 2131363029;
ImageView imageView = (ImageView) viewGroup.findViewById(2131363029);
2021-06-27 20:44:35 +00:00
if (imageView != null) {
2021-06-27 20:53:42 +00:00
i = 2131363030;
TextView textView2 = (TextView) viewGroup.findViewById(2131363030);
2021-06-27 20:44:35 +00:00
if (textView2 != null) {
return new EmptyFriendsStateContactSyncViewBinding(viewGroup, textView, materialButton, imageView, textView2);
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(viewGroup.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}