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

46 lines
1.5 KiB
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package c.a.i;
import android.view.View;
2021-07-27 00:35:07 +00:00
import android.widget.RelativeLayout;
2021-07-24 02:37:17 +00:00
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.facebook.drawee.view.SimpleDraweeView;
2021-07-27 00:35:07 +00:00
/* compiled from: WidgetUserProfileAdapterItemFriendMutualServerBinding */
2021-07-24 02:37:17 +00:00
public final class t5 implements ViewBinding {
@NonNull
2021-07-27 00:35:07 +00:00
public final RelativeLayout a;
2021-07-24 02:37:17 +00:00
@NonNull
2021-07-27 00:35:07 +00:00
public final SimpleDraweeView b;
2021-07-24 02:37:17 +00:00
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f164c;
2021-07-27 00:35:07 +00:00
public t5(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) {
this.a = relativeLayout;
this.b = simpleDraweeView;
2021-07-24 02:37:17 +00:00
this.f164c = textView;
}
@NonNull
2021-07-27 00:35:07 +00:00
public static t5 a(@NonNull View view) {
int i = 2131365545;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131365545);
if (simpleDraweeView != null) {
i = 2131365546;
TextView textView = (TextView) view.findViewById(2131365546);
if (textView != null) {
return new t5((RelativeLayout) view, simpleDraweeView, textView);
2021-07-24 02:37:17 +00:00
}
}
2021-07-27 00:35:07 +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;
}
}