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

41 lines
1.4 KiB
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.discord.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
public final class WidgetChannelMembersListItemHeaderBinding implements ViewBinding {
@NonNull
public final FrameLayout a;
@NonNull
public final TextView b;
public WidgetChannelMembersListItemHeaderBinding(@NonNull FrameLayout frameLayout, @NonNull TextView textView) {
this.a = frameLayout;
this.b = textView;
}
@NonNull
public static WidgetChannelMembersListItemHeaderBinding a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
2021-07-03 23:36:06 +00:00
View inflate = layoutInflater.inflate(2131558870, viewGroup, false);
2021-06-27 20:44:35 +00:00
if (z2) {
viewGroup.addView(inflate);
}
2021-07-03 23:36:06 +00:00
TextView textView = (TextView) inflate.findViewById(2131362286);
2021-06-27 20:44:35 +00:00
if (textView != null) {
return new WidgetChannelMembersListItemHeaderBinding((FrameLayout) inflate, textView);
}
2021-07-03 23:36:06 +00:00
throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(2131362286)));
2021-06-27 20:44:35 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}