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

71 lines
2.9 KiB
Java
Raw Normal View History

2021-12-17 22:01:24 +00:00
package b.a.i;
import android.view.View;
2021-11-29 08:39:39 +00:00
import android.widget.ImageView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
2021-11-29 08:39:39 +00:00
import com.discord.R;
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-11-22 08:31:21 +00:00
import com.google.android.material.textview.MaterialTextView;
2021-11-29 08:39:39 +00:00
/* compiled from: WidgetChatListBotUiSelectComponentBinding */
2021-12-17 22:01:24 +00:00
public final class w4 implements ViewBinding {
@NonNull
2021-11-29 08:39:39 +00:00
public final SelectComponentView a;
@NonNull
2021-12-17 22:01:24 +00:00
/* renamed from: b reason: collision with root package name */
2022-01-31 08:58:36 +00:00
public final ImageView f221b;
2021-12-17 22:01:24 +00:00
@NonNull
public final TypingDots c;
2021-11-29 08:39:39 +00:00
@NonNull
public final SimpleDraweeView d;
@NonNull
public final MaterialTextView e;
@NonNull
public final FlexboxLayout f;
2021-12-17 22:01:24 +00:00
public w4(@NonNull SelectComponentView selectComponentView, @NonNull ImageView imageView, @NonNull TypingDots typingDots, @NonNull SimpleDraweeView simpleDraweeView, @NonNull MaterialTextView materialTextView, @NonNull FlexboxLayout flexboxLayout) {
2021-11-29 08:39:39 +00:00
this.a = selectComponentView;
2022-01-31 08:58:36 +00:00
this.f221b = imageView;
2021-12-17 22:01:24 +00:00
this.c = typingDots;
2021-11-29 08:39:39 +00:00
this.d = simpleDraweeView;
this.e = materialTextView;
this.f = flexboxLayout;
}
@NonNull
2021-12-17 22:01:24 +00:00
public static w4 a(@NonNull View view) {
2021-11-29 08:39:39 +00:00
int i = R.id.select_component_chevron;
ImageView imageView = (ImageView) view.findViewById(R.id.select_component_chevron);
if (imageView != null) {
i = R.id.select_component_loading;
TypingDots typingDots = (TypingDots) view.findViewById(R.id.select_component_loading);
if (typingDots != null) {
i = R.id.select_component_selection_icon;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.select_component_selection_icon);
if (simpleDraweeView != null) {
i = R.id.select_component_selection_text;
MaterialTextView materialTextView = (MaterialTextView) view.findViewById(R.id.select_component_selection_text);
if (materialTextView != null) {
i = R.id.select_component_selections_root;
FlexboxLayout flexboxLayout = (FlexboxLayout) view.findViewById(R.id.select_component_selections_root);
if (flexboxLayout != null) {
2021-12-17 22:01:24 +00:00
return new w4((SelectComponentView) view, imageView, typingDots, simpleDraweeView, materialTextView, flexboxLayout);
2021-11-29 08:39:39 +00:00
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}