- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
47 lines
1.3 KiB
Java
47 lines
1.3 KiB
Java
package com.mbridge.msdk.video.module;
|
|
|
|
import android.content.Context;
|
|
import android.util.AttributeSet;
|
|
import android.view.View;
|
|
import android.widget.TextView;
|
|
import com.mbridge.msdk.MBridgeConstans;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public abstract class MBridgeNativeEndCardViewDiff extends MBridgeBaseView {
|
|
public TextView ctaView;
|
|
|
|
public boolean checkChinaShakeState() {
|
|
return false;
|
|
}
|
|
|
|
public boolean checkProgressBarIntercepted() {
|
|
return false;
|
|
}
|
|
|
|
public MBridgeNativeEndCardViewDiff(Context context) {
|
|
super(context);
|
|
}
|
|
|
|
public MBridgeNativeEndCardViewDiff(Context context, AttributeSet attributeSet, boolean z, int i, boolean z2, int i2, int i3) {
|
|
super(context, attributeSet, z, i, z2, i2, i3);
|
|
}
|
|
|
|
public MBridgeNativeEndCardViewDiff(Context context, AttributeSet attributeSet) {
|
|
super(context, attributeSet);
|
|
}
|
|
|
|
public boolean ctaViewCanGet(View view, boolean z) {
|
|
try {
|
|
View findViewById = view.findViewById(filterFindViewId(z, "mbridge_tv_cta"));
|
|
if (findViewById instanceof TextView) {
|
|
this.ctaView = (TextView) findViewById;
|
|
}
|
|
} catch (Exception e) {
|
|
if (MBridgeConstans.DEBUG) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
return this.ctaView != null;
|
|
}
|
|
}
|