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

31 lines
903 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
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;
public final class SettingsChannelListCategoryItemBinding implements ViewBinding {
@NonNull
public final RelativeLayout a;
@NonNull
public final ImageView b;
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-13 20:23:20 +00:00
public final TextView f1624c;
2021-06-27 20:44:35 +00:00
public SettingsChannelListCategoryItemBinding(@NonNull RelativeLayout relativeLayout, @NonNull ImageView imageView, @NonNull TextView textView) {
this.a = relativeLayout;
this.b = imageView;
2021-07-13 20:23:20 +00:00
this.f1624c = textView;
2021-06-27 20:44:35 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}