package c.a.j; 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 x3 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 f187c; @NonNull public final TextView d; public x3(@NonNull LinearLayout linearLayout, @NonNull ImageView imageView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull LinearLayout linearLayout2) { this.a = linearLayout; this.b = imageView; this.f187c = textView; this.d = textView2; } @NonNull public static x3 a(@NonNull View view) { int i = 2131365719; ImageView imageView = (ImageView) view.findViewById(2131365719); if (imageView != null) { i = 2131365720; TextView textView = (TextView) view.findViewById(2131365720); if (textView != null) { i = 2131365721; TextView textView2 = (TextView) view.findViewById(2131365721); if (textView2 != null) { LinearLayout linearLayout = (LinearLayout) view; return new x3(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; } }