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

70 lines
2.7 KiB
Java
Raw Normal View History

2021-08-03 07:33:18 +00:00
package c.a.j;
2021-07-24 02:37:17 +00:00
import android.view.View;
2021-07-28 07:39:21 +00:00
import android.widget.ImageView;
2021-07-24 02:37:17 +00:00
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
2021-07-28 07:39:21 +00:00
import com.discord.views.typing.TypingDots;
import com.discord.widgets.botuikit.views.select.SelectComponentView;
import com.facebook.drawee.view.SimpleDraweeView;
import com.google.android.flexbox.FlexboxLayout;
2021-07-27 00:35:07 +00:00
import com.google.android.material.textview.MaterialTextView;
2021-07-28 07:39:21 +00:00
/* compiled from: WidgetChatListBotUiSelectComponentBinding */
2021-07-24 02:37:17 +00:00
public final class r4 implements ViewBinding {
@NonNull
2021-07-28 07:39:21 +00:00
public final SelectComponentView a;
@NonNull
public final ImageView b;
@NonNull
2021-07-24 02:37:17 +00:00
2021-07-28 07:39:21 +00:00
/* renamed from: c reason: collision with root package name */
2021-08-03 07:33:18 +00:00
public final TypingDots f154c;
2021-07-28 07:39:21 +00:00
@NonNull
public final SimpleDraweeView d;
@NonNull
public final MaterialTextView e;
@NonNull
public final FlexboxLayout f;
public r4(@NonNull SelectComponentView selectComponentView, @NonNull ImageView imageView, @NonNull TypingDots typingDots, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialTextView materialTextView, @NonNull FlexboxLayout flexboxLayout) {
this.a = selectComponentView;
this.b = imageView;
2021-08-03 07:33:18 +00:00
this.f154c = typingDots;
2021-07-28 07:39:21 +00:00
this.d = simpleDraweeView;
this.e = materialTextView;
this.f = flexboxLayout;
}
@NonNull
public static r4 a(@NonNull View view) {
2021-08-03 07:33:18 +00:00
int i = 2131364768;
ImageView imageView = (ImageView) view.findViewById(2131364768);
2021-07-28 07:39:21 +00:00
if (imageView != null) {
2021-08-03 07:33:18 +00:00
i = 2131364769;
TypingDots typingDots = (TypingDots) view.findViewById(2131364769);
2021-07-28 07:39:21 +00:00
if (typingDots != null) {
2021-08-03 07:33:18 +00:00
i = 2131364770;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131364770);
2021-07-28 07:39:21 +00:00
if (simpleDraweeView != null) {
2021-08-03 07:33:18 +00:00
i = 2131364771;
MaterialTextView materialTextView = (MaterialTextView) view.findViewById(2131364771);
2021-07-28 07:39:21 +00:00
if (materialTextView != null) {
2021-08-03 07:33:18 +00:00
i = 2131364772;
FlexboxLayout flexboxLayout = (FlexboxLayout) view.findViewById(2131364772);
2021-07-28 07:39:21 +00:00
if (flexboxLayout != null) {
return new r4((SelectComponentView) view, imageView, typingDots, simpleDraweeView, materialTextView, flexboxLayout);
}
}
}
}
}
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;
}
}