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 f1611c;
@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.f1611c = 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(2131558526, viewGroup);
int i = 2131363619;
ImageView imageView = (ImageView) viewGroup.findViewById(2131363619);
if (imageView != null) {
i = 2131363620;
SimpleDraweeView simpleDraweeView = (SimpleDraweeView) viewGroup.findViewById(2131363620);
if (simpleDraweeView != null) {
i = 2131363621;
ProgressBar progressBar = (ProgressBar) viewGroup.findViewById(2131363621);
if (progressBar != null) {
i = 2131363622;
ImageView imageView2 = (ImageView) viewGroup.findViewById(2131363622);
if (imageView2 != null) {
i = 2131363623;
PlayerView playerView = (PlayerView) viewGroup.findViewById(2131363623);
if (playerView != null) {
i = 2131363624;
ImageView imageView3 = (ImageView) viewGroup.findViewById(2131363624);
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;
}
}