discord-jadx/app/src/main/java/com/discord/widgets/channels/WidgetChannelTopic$binding$...

53 lines
2.6 KiB
Java

package com.discord.widgets.channels;
import android.view.View;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import com.discord.R;
import com.discord.databinding.WidgetChannelTopicBinding;
import com.discord.utilities.view.text.LinkifiedTextView;
import com.facebook.drawee.view.SimpleDraweeView;
import d0.z.d.k;
import d0.z.d.m;
import kotlin.jvm.functions.Function1;
/* compiled from: WidgetChannelTopic.kt */
public final /* synthetic */ class WidgetChannelTopic$binding$2 extends k implements Function1<View, WidgetChannelTopicBinding> {
public static final WidgetChannelTopic$binding$2 INSTANCE = new WidgetChannelTopic$binding$2();
public WidgetChannelTopic$binding$2() {
super(1, WidgetChannelTopicBinding.class, "bind", "bind(Landroid/view/View;)Lcom/discord/databinding/WidgetChannelTopicBinding;", 0);
}
public final WidgetChannelTopicBinding invoke(View view) {
m.checkNotNullParameter(view, "p1");
int i = R.id.channel_aka;
UserAkaView userAkaView = (UserAkaView) view.findViewById(R.id.channel_aka);
if (userAkaView != null) {
LinearLayout linearLayout = (LinearLayout) view;
i = R.id.channel_topic_channel_icon;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) view.findViewById(R.id.channel_topic_channel_icon);
if (simpleDraweeView != null) {
i = R.id.channel_topic_ellipsis;
ImageView imageView = (ImageView) view.findViewById(R.id.channel_topic_ellipsis);
if (imageView != null) {
i = R.id.channel_topic_more_icon;
ImageView imageView2 = (ImageView) view.findViewById(R.id.channel_topic_more_icon);
if (imageView2 != null) {
i = R.id.channel_topic_name;
TextView textView = (TextView) view.findViewById(R.id.channel_topic_name);
if (textView != null) {
i = R.id.channel_topic_title;
LinkifiedTextView linkifiedTextView = (LinkifiedTextView) view.findViewById(R.id.channel_topic_title);
if (linkifiedTextView != null) {
return new WidgetChannelTopicBinding(linearLayout, userAkaView, linearLayout, simpleDraweeView, imageView, imageView2, textView, linkifiedTextView);
}
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
}