discord-jadx/app/src/main/java/com/discord/databinding/WidgetNoticePopupBinding.java

49 lines
1.7 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.discord.utilities.view.text.SimpleDraweeSpanTextView;
import com.discord.views.sticker.StickerView;
import com.facebook.drawee.view.SimpleDraweeView;
public final class WidgetNoticePopupBinding implements ViewBinding {
@NonNull
public final RelativeLayout a;
@NonNull
public final SimpleDraweeView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeSpanTextView f1855c;
@NonNull
public final ImageView d;
@NonNull
public final SimpleDraweeView e;
@NonNull
public final StickerView f;
@NonNull
public final TextView g;
@NonNull
public final TextView h;
public WidgetNoticePopupBinding(@NonNull RelativeLayout relativeLayout, @NonNull SimpleDraweeView simpleDraweeView, @NonNull SimpleDraweeSpanTextView simpleDraweeSpanTextView, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView2, @NonNull StickerView stickerView, @NonNull TextView textView, @NonNull TextView textView2, @NonNull RelativeLayout relativeLayout2) {
this.a = relativeLayout;
this.b = simpleDraweeView;
this.f1855c = simpleDraweeSpanTextView;
this.d = imageView;
this.e = simpleDraweeView2;
this.f = stickerView;
this.g = textView;
this.h = textView2;
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}