Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
package com.adif.elcanomovil.commonViews.databinding;
|
||||
|
||||
import a.AbstractC0105a;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import com.adif.elcanomovil.commonViews.R;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class ViewBadgeBinding {
|
||||
public final ImageView badgeBackground;
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
private ViewBadgeBinding(ConstraintLayout constraintLayout, ImageView imageView) {
|
||||
this.rootView = constraintLayout;
|
||||
this.badgeBackground = imageView;
|
||||
}
|
||||
|
||||
public static ViewBadgeBinding bind(View view) {
|
||||
int i = R.id.badgeBackground;
|
||||
ImageView imageView = (ImageView) AbstractC0105a.t(view, i);
|
||||
if (imageView != null) {
|
||||
return new ViewBadgeBinding((ConstraintLayout) view, imageView);
|
||||
}
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(view.getResources().getResourceName(i)));
|
||||
}
|
||||
|
||||
public static ViewBadgeBinding inflate(LayoutInflater layoutInflater) {
|
||||
return inflate(layoutInflater, null, false);
|
||||
}
|
||||
|
||||
public static ViewBadgeBinding inflate(LayoutInflater layoutInflater, ViewGroup viewGroup, boolean z3) {
|
||||
View inflate = layoutInflater.inflate(R.layout.view_badge, viewGroup, false);
|
||||
if (z3) {
|
||||
viewGroup.addView(inflate);
|
||||
}
|
||||
return bind(inflate);
|
||||
}
|
||||
|
||||
public ConstraintLayout getRoot() {
|
||||
return this.rootView;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user