discord-jadx/app/src/main/java/b/a/i/z0.java

78 lines
3.0 KiB
Java
Raw Normal View History

2021-12-21 23:37:30 +00:00
package b.a.i;
2021-06-27 20:44:35 +00:00
2021-11-30 23:47:08 +00:00
import android.view.LayoutInflater;
2021-06-27 20:44:35 +00:00
import android.view.View;
2021-11-30 23:47:08 +00:00
import android.view.ViewGroup;
import android.widget.ImageView;
2021-06-27 20:44:35 +00:00
import android.widget.TextView;
import androidx.annotation.NonNull;
2021-11-30 23:47:08 +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-11-30 23:47:08 +00:00
import com.discord.R;
import com.google.android.material.textfield.TextInputLayout;
/* compiled from: OverlayVoiceChannelSelectorBinding */
2021-12-21 23:37:30 +00:00
public final class z0 implements ViewBinding {
2021-06-27 20:44:35 +00:00
@NonNull
2021-11-30 23:47:08 +00:00
public final CardView a;
2021-06-27 20:44:35 +00:00
@NonNull
2021-11-30 23:47:08 +00:00
2021-12-21 23:37:30 +00:00
/* renamed from: b reason: collision with root package name */
2022-02-14 21:43:51 +00:00
public final ImageView f235b;
2021-12-21 23:37:30 +00:00
@NonNull
public final CardView c;
2021-11-30 23:47:08 +00:00
@NonNull
public final TextView d;
@NonNull
public final TextInputLayout e;
@NonNull
public final RecyclerView f;
2021-12-21 23:37:30 +00:00
public z0(@NonNull CardView cardView, @NonNull ImageView imageView, @NonNull CardView cardView2, @NonNull TextView textView, @NonNull TextInputLayout textInputLayout, @NonNull RecyclerView recyclerView, @NonNull TextView textView2) {
2021-11-30 23:47:08 +00:00
this.a = cardView;
2022-02-14 21:43:51 +00:00
this.f235b = imageView;
2021-12-21 23:37:30 +00:00
this.c = cardView2;
2021-11-30 23:47:08 +00:00
this.d = textView;
this.e = textInputLayout;
this.f = recyclerView;
}
2021-06-27 20:44:35 +00:00
2021-11-30 23:47:08 +00:00
@NonNull
2021-12-21 23:37:30 +00:00
public static z0 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
2021-11-30 23:47:08 +00:00
View inflate = layoutInflater.inflate(R.layout.overlay_voice_channel_selector, viewGroup, false);
if (z2) {
viewGroup.addView(inflate);
}
int i = R.id.close;
ImageView imageView = (ImageView) inflate.findViewById(R.id.close);
if (imageView != null) {
CardView cardView = (CardView) inflate;
i = R.id.empty_results;
TextView textView = (TextView) inflate.findViewById(R.id.empty_results);
if (textView != null) {
i = R.id.overlay_channel_search;
TextInputLayout textInputLayout = (TextInputLayout) inflate.findViewById(R.id.overlay_channel_search);
if (textInputLayout != null) {
i = R.id.results_rv;
RecyclerView recyclerView = (RecyclerView) inflate.findViewById(R.id.results_rv);
if (recyclerView != null) {
i = R.id.test;
TextView textView2 = (TextView) inflate.findViewById(R.id.test);
if (textView2 != null) {
2021-12-21 23:37:30 +00:00
return new z0(cardView, imageView, cardView, textView, textInputLayout, recyclerView, textView2);
2021-11-30 23:47:08 +00:00
}
}
}
}
}
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;
}
}