Files
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

118 lines
4.8 KiB
Java

package com.mbridge.msdk.foundation.tools;
import android.graphics.Rect;
import android.view.View;
import android.view.ViewGroup;
import android.webkit.WebView;
/* loaded from: classes4.dex */
public final class as {
private static boolean a = false;
private static int a(View view, ViewGroup viewGroup) {
int i = 0;
while (i < viewGroup.getChildCount() && viewGroup.getChildAt(i) != view) {
i++;
}
return i;
}
private static boolean a(View view, View view2, int i) {
Rect rect = new Rect();
view.getGlobalVisibleRect(rect);
Rect rect2 = new Rect();
view2.getGlobalVisibleRect(rect2);
if (!Rect.intersects(rect, rect2)) {
return false;
}
int min = Math.min(rect.right, rect2.right) - Math.max(rect.left, rect2.left);
int min2 = Math.min(rect.bottom, rect2.bottom) - Math.max(rect.top, rect2.top);
return (i != 1 && (min * min2) * 2 >= view.getMeasuredHeight() * view.getMeasuredWidth()) || (i == 1 && min * min2 >= view.getMeasuredHeight() * view.getMeasuredWidth());
}
private static boolean a(View view, ViewGroup viewGroup, int i) {
for (int i2 = 0; i2 < viewGroup.getChildCount(); i2++) {
af.b("ViewUtils", "View Judge : Start Loop");
View childAt = viewGroup.getChildAt(i2);
if (childAt.getVisibility() == 0 && a(view, childAt, i)) {
if ((childAt instanceof WebView) && childAt.getVisibility() == 0) {
af.b("ViewUtils", "View Judge : View Covered by WebView.");
a = true;
}
if (a(childAt)) {
af.b("ViewUtils", "View Judge : View Covered and Cover ViewGroup is not transparent.");
a = true;
}
if (a) {
break;
}
if (childAt instanceof ViewGroup) {
a(view, (ViewGroup) childAt, i);
}
}
}
return a;
}
public static boolean a(View view, int i) {
if (view == null) {
return true;
}
if (view.getVisibility() != 0) {
af.b("ViewUtils", "Banner Judge : Banner's not visible.");
return true;
}
if (view.getAlpha() < 0.5f) {
af.b("ViewUtils", "Banner Judge : Banner's alpha must set up 50%.");
return true;
}
if (view.getParent() != null && (view.getParent() instanceof ViewGroup) && ((ViewGroup) view.getParent()).getVisibility() != 0) {
af.b("ViewUtils", "View Judge : View's container is not visible.");
return true;
}
Rect rect = new Rect();
boolean globalVisibleRect = view.getGlobalVisibleRect(rect);
boolean z = ((float) ((rect.bottom - rect.top) * (rect.right - rect.left))) > ((float) (view.getMeasuredHeight() * view.getMeasuredWidth())) * (i == 1 ? 0.0f : 0.5f);
boolean z2 = globalVisibleRect && z;
af.b("ViewUtils", "View Judge : partVisible is " + globalVisibleRect + " halfPercentVisible is " + z);
StringBuilder sb = new StringBuilder();
sb.append("View Judge : totalViewVisible is ");
sb.append(z2);
af.b("ViewUtils", sb.toString());
if (!z2) {
return true;
}
View view2 = view;
while (view2.getParent() instanceof ViewGroup) {
ViewGroup viewGroup = (ViewGroup) view2.getParent();
for (int a2 = a(view2, viewGroup) + 1; a2 < viewGroup.getChildCount(); a2++) {
View childAt = viewGroup.getChildAt(a2);
if (childAt.getVisibility() == 0 && a(view, childAt, i)) {
if (childAt instanceof ViewGroup) {
ViewGroup viewGroup2 = (ViewGroup) childAt;
if (viewGroup2.getChildCount() > 0) {
af.b("ViewUtils", "View Judge : Covered by ViewGroup.");
boolean a3 = a(view, viewGroup2, i);
a = false;
if (a3) {
return true;
}
}
}
if (a(childAt)) {
af.b("ViewUtils", "View Judge : View Covered and Cover View is not transparent.");
return true;
}
}
}
view2 = viewGroup;
}
af.b("ViewUtils", "View Judge : Well done, View is not covered.");
return false;
}
private static boolean a(View view) {
return !(view != null && (view.getTag() instanceof String) && "mb_wm".equals(view.getTag())) && view.getBackground() != null && view.getBackground().getAlpha() > 127 && view.getAlpha() > 0.5f;
}
}