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

54 lines
1.8 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: ViewUserStatusPresenceBinding */
public final class s3 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 f155c;
@NonNull
public final TextView d;
public s3(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout2) {
this.a = linearLayout;
this.b = imageView;
this.f155c = textView;
this.d = textView2;
}
@NonNull
public static s3 a(@NonNull View view) {
int i = 2131365593;
ImageView imageView = (ImageView) view.findViewById(2131365593);
if (imageView != null) {
i = 2131365594;
TextView textView = (TextView) view.findViewById(2131365594);
if (textView != null) {
i = 2131365595;
TextView textView2 = (TextView) view.findViewById(2131365595);
if (textView2 != null) {
LinearLayout linearLayout = (LinearLayout) view;
return new s3(linearLayout, imageView, textView, textView2, linearLayout);
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}