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

60 lines
2.0 KiB
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package c.a.i;
import android.view.View;
2021-07-28 07:39:21 +00:00
import android.widget.ImageView;
import android.widget.LinearLayout;
2021-07-27 00:35:07 +00:00
import android.widget.TextView;
2021-07-24 02:37:17 +00:00
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
2021-07-28 07:39:21 +00:00
/* compiled from: ViewServerMemberCountBinding */
2021-07-24 02:37:17 +00:00
public final class a3 implements ViewBinding {
@NonNull
2021-07-28 07:39:21 +00:00
public final LinearLayout a;
2021-07-24 02:37:17 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final ImageView b;
2021-07-24 02:37:17 +00:00
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-28 07:39:21 +00:00
public final TextView f62c;
2021-07-27 00:35:07 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final ImageView d;
2021-07-27 00:35:07 +00:00
@NonNull
public final TextView e;
2021-07-24 02:37:17 +00:00
2021-07-28 07:39:21 +00:00
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;
2021-07-27 00:35:07 +00:00
this.e = textView2;
2021-07-28 07:39:21 +00:00
}
@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)));
2021-07-24 02:37:17 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}