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

77 lines
3.0 KiB
Java

package com.discord.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.ProgressBar;
import androidx.annotation.NonNull;
import androidx.viewbinding.ViewBinding;
import com.facebook.drawee.view.SimpleDraweeView;
import com.google.android.exoplayer2.ui.PlayerView;
public final class InlineMediaViewBinding implements ViewBinding {
@NonNull
public final View a;
@NonNull
public final ImageView b;
@NonNull
/* renamed from: c reason: collision with root package name */
public final SimpleDraweeView f1615c;
@NonNull
public final ProgressBar d;
@NonNull
public final ImageView e;
@NonNull
public final PlayerView f;
@NonNull
public final ImageView g;
public InlineMediaViewBinding(@NonNull View view, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull ProgressBar progressBar, @NonNull ImageView imageView2, @NonNull PlayerView playerView, @NonNull ImageView imageView3) {
this.a = view;
this.b = imageView;
this.f1615c = simpleDraweeView;
this.d = progressBar;
this.e = imageView2;
this.f = playerView;
this.g = imageView3;
}
@NonNull
public static InlineMediaViewBinding a(@NonNull LayoutInflater layoutInflater, @NonNull ViewGroup viewGroup) {
layoutInflater.inflate(2131558529, viewGroup);
int i = 2131363668;
ImageView imageView = (ImageView) viewGroup.findViewById(2131363668);
if (imageView != null) {
i = 2131363669;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) viewGroup.findViewById(2131363669);
if (simpleDraweeView != null) {
i = 2131363670;
ProgressBar progressBar = (ProgressBar) viewGroup.findViewById(2131363670);
if (progressBar != null) {
i = 2131363671;
ImageView imageView2 = (ImageView) viewGroup.findViewById(2131363671);
if (imageView2 != null) {
i = 2131363672;
PlayerView playerView = (PlayerView) viewGroup.findViewById(2131363672);
if (playerView != null) {
i = 2131363673;
ImageView imageView3 = (ImageView) viewGroup.findViewById(2131363673);
if (imageView3 != null) {
return new InlineMediaViewBinding(viewGroup, imageView, simpleDraweeView, progressBar, imageView2, playerView, imageView3);
}
}
}
}
}
}
throw new NullPointerException("Missing required view with ID: ".concat(viewGroup.getResources().getResourceName(i)));
}
@Override // androidx.viewbinding.ViewBinding
@NonNull
public View getRoot() {
return this.a;
}
}