Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
35
apk_decompiled/sources/H0/a.java
Normal file
35
apk_decompiled/sources/H0/a.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package H0;
|
||||
|
||||
import android.animation.LayoutTransition;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class a {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public static final ViewGroup.MarginLayoutParams f630a;
|
||||
|
||||
static {
|
||||
ViewGroup.MarginLayoutParams marginLayoutParams = new ViewGroup.MarginLayoutParams(-1, -1);
|
||||
f630a = marginLayoutParams;
|
||||
marginLayoutParams.setMargins(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
public static boolean a(View view) {
|
||||
if (view instanceof ViewGroup) {
|
||||
ViewGroup viewGroup = (ViewGroup) view;
|
||||
LayoutTransition layoutTransition = viewGroup.getLayoutTransition();
|
||||
if (layoutTransition != null && layoutTransition.isChangingLayout()) {
|
||||
return true;
|
||||
}
|
||||
int childCount = viewGroup.getChildCount();
|
||||
for (int i = 0; i < childCount; i++) {
|
||||
if (a(viewGroup.getChildAt(i))) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user