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

46 lines
1.5 KiB
Java
Raw Normal View History

2021-08-03 07:33:18 +00:00
package c.a.j;
2021-07-27 00:35:07 +00:00
import android.view.View;
2021-07-28 07:39:21 +00:00
import android.widget.RelativeLayout;
2021-07-27 00:35:07 +00:00
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.facebook.drawee.view.SimpleDraweeView;
2021-07-28 07:39:21 +00:00
/* compiled from: WidgetUserProfileAdapterItemFriendMutualServerBinding */
2021-07-27 00:35:07 +00:00
public final class u5 implements ViewBinding {
@NonNull
2021-07-28 07:39:21 +00:00
public final RelativeLayout a;
2021-07-27 00:35:07 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final SimpleDraweeView b;
2021-07-27 00:35:07 +00:00
@NonNull
/* renamed from: c reason: collision with root package name */
2021-08-03 07:33:18 +00:00
public final TextView f172c;
2021-07-27 00:35:07 +00:00
2021-07-28 07:39:21 +00:00
public u5(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) {
this.a = relativeLayout;
this.b = simpleDraweeView;
2021-08-03 07:33:18 +00:00
this.f172c = textView;
2021-07-27 00:35:07 +00:00
}
@NonNull
2021-07-28 07:39:21 +00:00
public static u5 a(@NonNull View view) {
2021-08-03 07:33:18 +00:00
int i = 2131365646;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131365646);
2021-07-28 07:39:21 +00:00
if (simpleDraweeView != null) {
2021-08-03 07:33:18 +00:00
i = 2131365647;
TextView textView = (TextView) view.findViewById(2131365647);
2021-07-28 07:39:21 +00:00
if (textView != null) {
return new u5((RelativeLayout) view, simpleDraweeView, textView);
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-27 00:35:07 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}