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

54 lines
1.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.View;
2021-07-28 07:39:21 +00:00
import android.widget.ImageView;
import android.widget.LinearLayout;
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: ViewUserStatusPresenceBinding */
2021-08-03 07:33:18 +00:00
public final class x3 implements ViewBinding {
2021-07-24 02:37:17 +00:00
@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;
@NonNull
/* renamed from: c reason: collision with root package name */
2021-08-03 07:33:18 +00:00
public final TextView f187c;
2021-07-28 07:39:21 +00:00
@NonNull
public final TextView d;
2021-07-24 02:37:17 +00:00
2021-08-03 07:33:18 +00:00
public x3(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout2) {
2021-07-28 07:39:21 +00:00
this.a = linearLayout;
this.b = imageView;
2021-08-03 07:33:18 +00:00
this.f187c = textView;
2021-07-28 07:39:21 +00:00
this.d = textView2;
2021-07-27 00:35:07 +00:00
}
2021-07-24 02:37:17 +00:00
2021-07-27 00:35:07 +00:00
@NonNull
2021-08-03 07:33:18 +00:00
public static x3 a(@NonNull View view) {
int i = 2131365719;
ImageView imageView = (ImageView) view.findViewById(2131365719);
2021-07-28 07:39:21 +00:00
if (imageView != null) {
2021-08-03 07:33:18 +00:00
i = 2131365720;
TextView textView = (TextView) view.findViewById(2131365720);
2021-07-28 07:39:21 +00:00
if (textView != null) {
2021-08-03 07:33:18 +00:00
i = 2131365721;
TextView textView2 = (TextView) view.findViewById(2131365721);
2021-07-28 07:39:21 +00:00
if (textView2 != null) {
LinearLayout linearLayout = (LinearLayout) view;
2021-08-03 07:33:18 +00:00
return new x3(linearLayout, imageView, textView, textView2, linearLayout);
2021-07-28 07:39:21 +00:00
}
}
2021-07-27 00:35:07 +00:00
}
2021-07-28 07:39:21 +00:00
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;
}
}