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

44 lines
1.5 KiB
Java

package com.discord.databinding;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
public final class WidgetFriendsListExpandableHeaderBinding implements ViewBinding {
@NonNull
public final FrameLayout a;
@NonNull
public final TextView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final TextView f1796c;
public WidgetFriendsListExpandableHeaderBinding(@NonNull FrameLayout frameLayout, @NonNull TextView textView, @NonNull TextView textView2) {
this.a = frameLayout;
this.b = textView;
this.f1796c = textView2;
}
@NonNull
public static WidgetFriendsListExpandableHeaderBinding a(@NonNull View view) {
int i = 2131363304;
TextView textView = (TextView) view.findViewById(2131363304);
if (textView != null) {
i = 2131363321;
TextView textView2 = (TextView) view.findViewById(2131363321);
if (textView2 != null) {
return new WidgetFriendsListExpandableHeaderBinding((FrameLayout) view, textView, textView2);
}
}
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}