discord-jadx/app/src/main/java/c/a/i/s0.java

77 lines
2.8 KiB
Java

package c.a.i;
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.recyclerview.widget.RecyclerView;
import androidx.viewbinding.ViewBinding;
import com.google.android.material.textfield.TextInputLayout;
/* compiled from: OverlayVoiceChannelSelectorBinding */
public final class s0 implements ViewBinding {
@NonNull
public final CardView a;
@NonNull
public final ImageView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final CardView f153c;
@NonNull
public final TextView d;
@NonNull
public final TextInputLayout e;
@NonNull
public final RecyclerView f;
public s0(@NonNull CardView cardView, @NonNull ImageView imageView, @NonNull CardView cardView2, @NonNull TextView textView, @NonNull TextInputLayout textInputLayout, @NonNull RecyclerView recyclerView, @NonNull TextView textView2) {
this.a = cardView;
this.b = imageView;
this.f153c = cardView2;
this.d = textView;
this.e = textInputLayout;
this.f = recyclerView;
}
@NonNull
public static s0 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
View inflate = layoutInflater.inflate(2131558617, viewGroup, false);
if (z2) {
viewGroup.addView(inflate);
}
int i = 2131362663;
ImageView imageView = (ImageView) inflate.findViewById(2131362663);
if (imageView != null) {
CardView cardView = (CardView) inflate;
i = 2131363089;
TextView textView = (TextView) inflate.findViewById(2131363089);
if (textView != null) {
i = 2131364213;
TextInputLayout textInputLayout = (TextInputLayout) inflate.findViewById(2131364213);
if (textInputLayout != null) {
i = 2131364533;
RecyclerView recyclerView = (RecyclerView) inflate.findViewById(2131364533);
if (recyclerView != null) {
i = 2131365323;
TextView textView2 = (TextView) inflate.findViewById(2131365323);
if (textView2 != null) {
return new s0(cardView, imageView, cardView, textView, textInputLayout, recyclerView, textView2);
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}