Files
rr3-apk/decompiled/sources/com/mbridge/msdk/video/dynview/widget/MBridgeRelativeLayout.java
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

86 lines
2.3 KiB
Java

package com.mbridge.msdk.video.dynview.widget;
import android.animation.AnimatorSet;
import android.content.Context;
import android.util.AttributeSet;
import android.view.View;
import android.widget.RelativeLayout;
import androidx.annotation.NonNull;
import com.mbridge.msdk.video.dynview.moffer.b;
import com.mbridge.msdk.video.dynview.moffer.d;
/* loaded from: classes4.dex */
public class MBridgeRelativeLayout extends RelativeLayout {
private d a;
private boolean b;
private AnimatorSet c;
private boolean d;
private b e;
public void setAnimatorSet(AnimatorSet animatorSet) {
this.c = animatorSet;
}
public void setMoreOfferCacheReportCallBack(b bVar) {
this.e = bVar;
}
public void setMoreOfferShowFailedCallBack(d dVar) {
this.a = dVar;
}
public MBridgeRelativeLayout(Context context) {
super(context);
}
public MBridgeRelativeLayout(Context context, AttributeSet attributeSet) {
super(context, attributeSet);
}
public MBridgeRelativeLayout(Context context, AttributeSet attributeSet, int i) {
super(context, attributeSet, i);
}
@Override // android.view.ViewGroup, android.view.View
public void onAttachedToWindow() {
super.onAttachedToWindow();
AnimatorSet animatorSet = this.c;
if (animatorSet != null) {
try {
animatorSet.start();
} catch (Exception e) {
e.printStackTrace();
}
}
}
@Override // android.view.ViewGroup, android.view.View
public void onDetachedFromWindow() {
d dVar;
super.onDetachedFromWindow();
if (!this.b && (dVar = this.a) != null) {
this.b = true;
dVar.a();
}
AnimatorSet animatorSet = this.c;
if (animatorSet != null) {
try {
animatorSet.cancel();
} catch (Exception e) {
e.printStackTrace();
}
}
}
@Override // android.view.View
public void onVisibilityChanged(@NonNull View view, int i) {
b bVar;
super.onVisibilityChanged(view, i);
if (!(view instanceof MBridgeRelativeLayout) || i != 0 || (bVar = this.e) == null || this.d) {
return;
}
this.d = true;
bVar.a();
}
}