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

60 lines
2.0 KiB
Java

package c.a.i;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
/* compiled from: ViewServerMemberCountBinding */
public final class y2 implements ViewBinding {
@NonNull
public final LinearLayout a;
@NonNull
public final ImageView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f188c;
@NonNull
public final ImageView d;
@NonNull
public final TextView e;
public y2(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull ImageView imageView2, @NonNull TextView textView2) {
this.a = linearLayout;
this.b = imageView;
this.f188c = textView;
this.d = imageView2;
this.e = textView2;
}
@NonNull
public static y2 a(@NonNull View view) {
int i = 2131363791;
ImageView imageView = (ImageView) view.findViewById(2131363791);
if (imageView != null) {
i = 2131363792;
TextView textView = (TextView) view.findViewById(2131363792);
if (textView != null) {
i = 2131363793;
ImageView imageView2 = (ImageView) view.findViewById(2131363793);
if (imageView2 != null) {
i = 2131363794;
TextView textView2 = (TextView) view.findViewById(2131363794);
if (textView2 != null) {
return new y2((LinearLayout) view, imageView, textView, imageView2, textView2);
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}