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

70 lines
2.7 KiB
Java

package c.a.i;
import android.view.View;
import android.widget.ImageView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
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;
import com.google.android.material.textview.MaterialTextView;
/* compiled from: WidgetChatListBotUiSelectComponentBinding */
public final class r4 implements ViewBinding {
@NonNull
public final SelectComponentView a;
@NonNull
public final ImageView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final TypingDots f153c;
@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;
this.f153c = typingDots;
this.d = simpleDraweeView;
this.e = materialTextView;
this.f = flexboxLayout;
}
@NonNull
public static r4 a(@NonNull View view) {
int i = 2131364693;
ImageView imageView = (ImageView) view.findViewById(2131364693);
if (imageView != null) {
i = 2131364694;
TypingDots typingDots = (TypingDots) view.findViewById(2131364694);
if (typingDots != null) {
i = 2131364695;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(2131364695);
if (simpleDraweeView != null) {
i = 2131364696;
MaterialTextView materialTextView = (MaterialTextView) view.findViewById(2131364696);
if (materialTextView != null) {
i = 2131364697;
FlexboxLayout flexboxLayout = (FlexboxLayout) view.findViewById(2131364697);
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)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}