- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
23 lines
492 B
Java
23 lines
492 B
Java
package com.facebook.ads.internal.api;
|
|
|
|
import android.view.View;
|
|
import androidx.annotation.Keep;
|
|
import androidx.annotation.UiThread;
|
|
|
|
@Keep
|
|
@UiThread
|
|
/* loaded from: classes2.dex */
|
|
public interface AdComponentViewParentApi extends AdComponentView {
|
|
void bringChildToFront(View view);
|
|
|
|
void onAttachedToWindow();
|
|
|
|
void onDetachedFromWindow();
|
|
|
|
void onMeasure(int i, int i2);
|
|
|
|
void onVisibilityChanged(View view, int i);
|
|
|
|
void setMeasuredDimension(int i, int i2);
|
|
}
|