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

37 lines
1.3 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 androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.viewbinding.ViewBinding;
public final class WidgetChannelMembersListItemPlaceholderHeaderBinding implements ViewBinding {
@NonNull
public final FrameLayout a;
public WidgetChannelMembersListItemPlaceholderHeaderBinding(@NonNull FrameLayout frameLayout, @NonNull View view) {
this.a = frameLayout;
}
@NonNull
public static WidgetChannelMembersListItemPlaceholderHeaderBinding a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
2021-07-13 20:23:20 +00:00
View inflate = layoutInflater.inflate(2131558877, viewGroup, false);
2021-06-27 20:44:35 +00:00
if (z2) {
viewGroup.addView(inflate);
}
2021-07-13 20:23:20 +00:00
View findViewById = inflate.findViewById(2131362289);
2021-06-27 20:44:35 +00:00
if (findViewById != null) {
return new WidgetChannelMembersListItemPlaceholderHeaderBinding((FrameLayout) inflate, findViewById);
}
2021-07-13 20:23:20 +00:00
throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(2131362289)));
2021-06-27 20:44:35 +00:00
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}