Files
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

90 lines
2.9 KiB
Java

package com.mbridge.msdk.nativex.view.mbfullview;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.mbridge.msdk.foundation.tools.x;
import com.mbridge.msdk.playercommon.exoplayer2.text.ttml.TtmlNode;
/* loaded from: classes4.dex */
public class BaseView extends RelativeLayout {
protected RelativeLayout a;
protected RelativeLayout b;
protected RelativeLayout c;
protected ImageView d;
protected TextView e;
protected ProgressBar f;
protected FrameLayout g;
protected LinearLayout h;
protected RelativeLayout i;
public a style;
public enum a {
FULL_TOP_VIEW,
FULL_MIDDLE_VIEW
}
public RelativeLayout getMBridgeFullClose() {
return this.c;
}
public ImageView getMBridgeFullIvClose() {
return this.d;
}
public ProgressBar getMBridgeFullPb() {
return this.f;
}
public RelativeLayout getMBridgeFullPlayContainer() {
return this.a;
}
public RelativeLayout getMBridgeFullPlayerParent() {
return this.b;
}
public TextView getMBridgeFullTvInstall() {
return this.e;
}
public a getStytle() {
return this.style;
}
public FrameLayout getmAnimationContent() {
return this.g;
}
public LinearLayout getmAnimationPlayer() {
return this.h;
}
public void setStytle(a aVar) {
this.style = aVar;
}
public BaseView(Context context) {
super(context);
View inflate = LayoutInflater.from(getContext()).inflate(x.a(getContext(), "mbridge_nativex_fullbasescreen", TtmlNode.TAG_LAYOUT), this);
this.i = (RelativeLayout) inflate;
if (inflate != null) {
this.a = (RelativeLayout) inflate.findViewById(x.a(getContext(), "mbridge_full_rl_playcontainer", "id"));
this.b = (RelativeLayout) inflate.findViewById(x.a(getContext(), "mbridge_full_player_parent", "id"));
this.c = (RelativeLayout) inflate.findViewById(x.a(getContext(), "mbridge_full_rl_close", "id"));
this.d = (ImageView) inflate.findViewById(x.a(getContext(), "mbridge_full_iv_close", "id"));
this.e = (TextView) inflate.findViewById(x.a(getContext(), "mbridge_full_tv_install", "id"));
this.f = (ProgressBar) inflate.findViewById(x.a(getContext(), "mbridge_full_pb_loading", "id"));
this.g = (FrameLayout) inflate.findViewById(x.a(getContext(), "mbridge_full_animation_content", "id"));
this.h = (LinearLayout) inflate.findViewById(x.a(getContext(), "mbridge_full_animation_player", "id"));
inflate.setLayoutParams(new RelativeLayout.LayoutParams(-1, -1));
}
}
}