Files
rr3-apk/decompiled-community/sources/com/mbridge/msdk/dycreator/e/f.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

61 lines
1.6 KiB
Java

package com.mbridge.msdk.dycreator.e;
import android.content.Context;
import android.text.TextUtils;
import android.view.View;
import android.view.ViewGroup;
import java.io.File;
/* loaded from: classes4.dex */
public class f {
private static volatile f a;
private com.mbridge.msdk.dycreator.a.b b;
public static f a(Context context) {
if (a == null) {
synchronized (f.class) {
try {
if (a == null) {
a = new f(context.getApplicationContext());
}
} finally {
}
}
}
return a;
}
private f(Context context) {
this.b = null;
com.mbridge.msdk.dycreator.a.b a2 = com.mbridge.msdk.dycreator.a.b.a();
this.b = a2;
a2.a(context, "");
}
public final View a(String str) {
if (new File(str).exists()) {
return this.b.f(str);
}
return null;
}
public final View a(ViewGroup viewGroup, String str) {
if (viewGroup != null && !TextUtils.isEmpty(str)) {
if (viewGroup.getId() == str.hashCode()) {
return viewGroup;
}
int childCount = viewGroup.getChildCount();
for (int i = 0; i < childCount; i++) {
View childAt = viewGroup.getChildAt(i);
if (childAt.getId() == str.hashCode()) {
return childAt;
}
if (childAt instanceof ViewGroup) {
a((ViewGroup) childAt, str);
}
}
}
return null;
}
}