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

77 lines
2.8 KiB
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package c.a.i;
2021-07-03 23:36:06 +00:00
import android.view.LayoutInflater;
2021-06-27 20:44:35 +00:00
import android.view.View;
2021-07-03 23:36:06 +00:00
import android.view.ViewGroup;
2021-06-27 20:44:35 +00:00
import android.widget.ImageView;
import android.widget.TextView;
import androidx.annotation.NonNull;
2021-07-03 23:36:06 +00:00
import androidx.annotation.Nullable;
import androidx.cardview.widget.CardView;
import androidx.recyclerview.widget.RecyclerView;
2021-06-27 20:44:35 +00:00
import androidx.viewbinding.ViewBinding;
2021-07-03 23:36:06 +00:00
import com.google.android.material.textfield.TextInputLayout;
/* compiled from: OverlayVoiceChannelSelectorBinding */
2021-06-27 20:44:35 +00:00
public final class s0 implements ViewBinding {
@NonNull
2021-07-03 23:36:06 +00:00
public final CardView a;
2021-06-27 20:44:35 +00:00
@NonNull
2021-07-03 23:36:06 +00:00
public final ImageView b;
2021-06-27 20:44:35 +00:00
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-19 19:45:22 +00:00
public final CardView f153c;
2021-06-27 20:44:35 +00:00
@NonNull
2021-07-03 23:36:06 +00:00
public final TextView d;
2021-06-27 20:44:35 +00:00
@NonNull
2021-07-03 23:36:06 +00:00
public final TextInputLayout e;
2021-06-27 20:44:35 +00:00
@NonNull
2021-07-03 23:36:06 +00:00
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;
2021-07-19 19:45:22 +00:00
this.f153c = cardView2;
2021-07-03 23:36:06 +00:00
this.d = textView;
this.e = textInputLayout;
this.f = recyclerView;
}
2021-06-27 20:44:35 +00:00
2021-07-03 23:36:06 +00:00
@NonNull
public static s0 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
2021-07-19 19:45:22 +00:00
View inflate = layoutInflater.inflate(2131558617, viewGroup, false);
2021-07-03 23:36:06 +00:00
if (z2) {
viewGroup.addView(inflate);
}
2021-07-19 19:45:22 +00:00
int i = 2131362663;
ImageView imageView = (ImageView) inflate.findViewById(2131362663);
2021-07-03 23:36:06 +00:00
if (imageView != null) {
CardView cardView = (CardView) inflate;
2021-07-19 19:45:22 +00:00
i = 2131363089;
TextView textView = (TextView) inflate.findViewById(2131363089);
2021-07-03 23:36:06 +00:00
if (textView != null) {
2021-07-19 19:45:22 +00:00
i = 2131364213;
TextInputLayout textInputLayout = (TextInputLayout) inflate.findViewById(2131364213);
2021-07-03 23:36:06 +00:00
if (textInputLayout != null) {
2021-07-19 19:45:22 +00:00
i = 2131364533;
RecyclerView recyclerView = (RecyclerView) inflate.findViewById(2131364533);
2021-07-03 23:36:06 +00:00
if (recyclerView != null) {
2021-07-20 00:17:12 +00:00
i = 2131365323;
TextView textView2 = (TextView) inflate.findViewById(2131365323);
2021-07-03 23:36:06 +00:00
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)));
2021-06-27 20:44:35 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}