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

77 lines
2.8 KiB
Java
Raw Normal View History

2021-08-03 07:33:18 +00:00
package c.a.j;
2021-07-24 02:37:17 +00:00
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 */
2021-08-03 07:33:18 +00:00
public final CardView f156c;
2021-07-24 02:37:17 +00:00
@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;
2021-08-03 07:33:18 +00:00
this.f156c = cardView2;
2021-07-24 02:37:17 +00:00
this.d = textView;
this.e = textInputLayout;
this.f = recyclerView;
}
@NonNull
public static s0 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
2021-08-03 07:33:18 +00:00
View inflate = layoutInflater.inflate(2131558623, viewGroup, false);
2021-07-24 02:37:17 +00:00
if (z2) {
viewGroup.addView(inflate);
}
2021-08-03 07:33:18 +00:00
int i = 2131362674;
ImageView imageView = (ImageView) inflate.findViewById(2131362674);
2021-07-24 02:37:17 +00:00
if (imageView != null) {
CardView cardView = (CardView) inflate;
2021-08-03 07:33:18 +00:00
i = 2131363118;
TextView textView = (TextView) inflate.findViewById(2131363118);
2021-07-24 02:37:17 +00:00
if (textView != null) {
2021-08-03 07:33:18 +00:00
i = 2131364310;
TextInputLayout textInputLayout = (TextInputLayout) inflate.findViewById(2131364310);
2021-07-24 02:37:17 +00:00
if (textInputLayout != null) {
2021-08-03 07:33:18 +00:00
i = 2131364629;
RecyclerView recyclerView = (RecyclerView) inflate.findViewById(2131364629);
2021-07-24 02:37:17 +00:00
if (recyclerView != null) {
2021-08-03 07:33:18 +00:00
i = 2131365430;
TextView textView2 = (TextView) inflate.findViewById(2131365430);
2021-07-24 02:37:17 +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)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}