discord-jadx/app/src/main/java/c/a/i/a3.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 a3 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 f62c;
@NonNull
public final ImageView d;
@NonNull
public final TextView e;
public a3(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull ImageView imageView2, @NonNull TextView textView2) {
this.a = linearLayout;
this.b = imageView;
this.f62c = textView;
this.d = imageView2;
this.e = textView2;
}
@NonNull
public static a3 a(@NonNull View view) {
int i = 2131363800;
ImageView imageView = (ImageView) view.findViewById(2131363800);
if (imageView != null) {
i = 2131363801;
TextView textView = (TextView) view.findViewById(2131363801);
if (textView != null) {
i = 2131363802;
ImageView imageView2 = (ImageView) view.findViewById(2131363802);
if (imageView2 != null) {
i = 2131363803;
TextView textView2 = (TextView) view.findViewById(2131363803);
if (textView2 != null) {
return new a3((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;
}
}