discord-jadx/app/src/main/java/c/a/i/i4.java

67 lines
2.5 KiB
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package c.a.i;
2021-07-28 07:39:21 +00:00
import android.view.LayoutInflater;
2021-07-24 02:37:17 +00:00
import android.view.View;
2021-07-28 07:39:21 +00:00
import android.view.ViewGroup;
2021-07-27 00:35:07 +00:00
import android.widget.LinearLayout;
2021-07-24 02:37:17 +00:00
import android.widget.TextView;
import androidx.annotation.NonNull;
2021-07-28 07:39:21 +00:00
import androidx.annotation.Nullable;
2021-07-24 02:37:17 +00:00
import androidx.viewbinding.ViewBinding;
2021-07-27 00:35:07 +00:00
import com.google.android.material.button.MaterialButton;
2021-07-28 07:39:21 +00:00
/* compiled from: WidgetChannelSettingsDeleteBinding */
2021-07-24 02:37:17 +00:00
public final class i4 implements ViewBinding {
@NonNull
2021-07-27 00:35:07 +00:00
public final LinearLayout a;
2021-07-24 02:37:17 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final TextView b;
2021-07-24 02:37:17 +00:00
@NonNull
/* renamed from: c reason: collision with root package name */
2021-07-28 07:39:21 +00:00
public final MaterialButton f106c;
2021-07-27 00:35:07 +00:00
@NonNull
2021-07-28 07:39:21 +00:00
public final MaterialButton d;
2021-07-27 00:35:07 +00:00
@NonNull
public final TextView e;
2021-07-24 02:37:17 +00:00
2021-07-28 07:39:21 +00:00
public i4(@NonNull LinearLayout linearLayout, @NonNull TextView textView, @NonNull MaterialButton materialButton, @NonNull MaterialButton materialButton2, @NonNull TextView textView2) {
2021-07-27 00:35:07 +00:00
this.a = linearLayout;
2021-07-28 07:39:21 +00:00
this.b = textView;
this.f106c = materialButton;
this.d = materialButton2;
2021-07-27 00:35:07 +00:00
this.e = textView2;
2021-07-24 02:37:17 +00:00
}
2021-07-28 07:39:21 +00:00
@NonNull
public static i4 a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) {
View inflate = layoutInflater.inflate(2131558896, (ViewGroup) null, false);
if (!z2) {
int i = 2131362354;
TextView textView = (TextView) inflate.findViewById(2131362354);
if (textView != null) {
i = 2131362355;
MaterialButton materialButton = (MaterialButton) inflate.findViewById(2131362355);
if (materialButton != null) {
i = 2131362356;
MaterialButton materialButton2 = (MaterialButton) inflate.findViewById(2131362356);
if (materialButton2 != null) {
i = 2131362357;
TextView textView2 = (TextView) inflate.findViewById(2131362357);
if (textView2 != null) {
return new i4((LinearLayout) inflate, textView, materialButton, materialButton2, textView2);
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i)));
}
throw null;
}
2021-07-24 02:37:17 +00:00
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}