discord-jadx/app/src/main/java/b/a/i/b6.java

48 lines
1.7 KiB
Java
Raw Normal View History

2022-01-27 07:52:47 +00:00
package b.a.i;
import android.view.View;
2022-03-12 00:35:13 +00:00
import android.widget.RelativeLayout;
2022-01-27 07:52:47 +00:00
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.discord.R;
import com.facebook.drawee.view.SimpleDraweeView;
2022-03-12 00:35:13 +00:00
/* compiled from: WidgetUserProfileAdapterItemFriendMutualServerBinding.java */
2022-03-07 09:34:54 +00:00
/* loaded from: classes.dex */
2022-01-27 07:52:47 +00:00
public final class b6 implements ViewBinding {
@NonNull
2022-03-12 00:35:13 +00:00
public final RelativeLayout a;
2022-01-27 07:52:47 +00:00
@NonNull
/* renamed from: b reason: collision with root package name */
2022-03-12 00:35:13 +00:00
public final SimpleDraweeView f87b;
2022-01-27 07:52:47 +00:00
@NonNull
public final TextView c;
2022-03-12 00:35:13 +00:00
public b6(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull TextView textView) {
this.a = relativeLayout;
this.f87b = simpleDraweeView;
2022-01-27 07:52:47 +00:00
this.c = textView;
}
@NonNull
2022-03-12 00:35:13 +00:00
public static b6 a(@NonNull View view) {
int i = R.id.user_profile_adapter_item_friend_mutual_image;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.user_profile_adapter_item_friend_mutual_image);
if (simpleDraweeView != null) {
i = R.id.user_profile_adapter_item_friend_mutual_text;
TextView textView = (TextView) view.findViewById(R.id.user_profile_adapter_item_friend_mutual_text);
if (textView != null) {
return new b6((RelativeLayout) view, simpleDraweeView, textView);
2022-01-27 07:52:47 +00:00
}
}
2022-03-12 00:35:13 +00:00
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
2022-01-27 07:52:47 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}