discord-jadx/app/src/main/java/com/discord/databinding/WidgetGuildsListItemDmBindi...

44 lines
1.4 KiB
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.databinding;
import android.view.View;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.facebook.drawee.view.SimpleDraweeView;
public final class WidgetGuildsListItemDmBinding implements ViewBinding {
@NonNull
public final View a;
@NonNull
public final SimpleDraweeView b;
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-13 20:23:20 +00:00
public final TextView f1828c;
2021-06-27 20:44:35 +00:00
public WidgetGuildsListItemDmBinding(@NonNull View view, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) {
this.a = view;
this.b = simpleDraweeView;
2021-07-13 20:23:20 +00:00
this.f1828c = textView;
2021-06-27 20:44:35 +00:00
}
@NonNull
public static WidgetGuildsListItemDmBinding a(@NonNull View view) {
2021-07-13 20:23:20 +00:00
int i = 2131363571;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131363571);
2021-06-27 20:44:35 +00:00
if (simpleDraweeView != null) {
2021-07-13 20:23:20 +00:00
i = 2131363572;
TextView textView = (TextView) view.findViewById(2131363572);
2021-06-27 20:44:35 +00:00
if (textView != null) {
return new WidgetGuildsListItemDmBinding(view, simpleDraweeView, textView);
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}