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>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
package com.mbridge.msdk.newreward.player.view;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.FrameLayout;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.mbridge.msdk.MBridgeConstans;
import com.mbridge.msdk.newreward.player.iview.ICusTemplateView;
import com.mbridge.msdk.newreward.player.presenter.PlayPresenter902;
import com.mbridge.msdk.playercommon.PlayerView;
/* loaded from: classes4.dex */
public class Template902 extends BaseTemplate implements ICusTemplateView {
public Template902(@NonNull Context context) {
super(context);
PlayPresenter902 playPresenter902 = new PlayPresenter902(this);
this.presenter = playPresenter902;
playPresenter902.getView();
}
public Template902(@NonNull Context context, @Nullable AttributeSet attributeSet) {
super(context, attributeSet);
}
@Override // com.mbridge.msdk.newreward.player.iview.ICusTemplateView
public void addCTAViewToLayout(View view, int i) {
if (this.mCtaLayout == null) {
return;
}
if (view != null && view.getParent() == null) {
this.mCtaLayout.addView(view);
}
this.mCtaLayout.setVisibility(i);
}
@Override // com.mbridge.msdk.newreward.player.iview.ICusTemplateView
public int getCTAViewState() {
FrameLayout frameLayout = this.mCtaLayout;
if (frameLayout != null) {
return frameLayout.getVisibility();
}
return -1;
}
@Override // com.mbridge.msdk.newreward.player.view.BaseTemplate
public void addClickEvent() {
super.addClickEvent();
PlayerView playerView = this.mPlayerView;
if (playerView != null) {
playerView.setOnClickListener(this);
}
try {
View childAt = getChildAt(0);
if (childAt != null) {
childAt.setOnClickListener(this);
}
} catch (Exception e) {
if (MBridgeConstans.DEBUG) {
e.printStackTrace();
}
}
}
}