Initial commit
This commit is contained in:
35
sources/androidx/transition/ViewGroupOverlayApi18.java
Normal file
35
sources/androidx/transition/ViewGroupOverlayApi18.java
Normal file
@@ -0,0 +1,35 @@
|
||||
package androidx.transition;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.view.ViewGroupOverlay;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
class ViewGroupOverlayApi18 implements ViewGroupOverlayImpl {
|
||||
private final ViewGroupOverlay a;
|
||||
|
||||
ViewGroupOverlayApi18(ViewGroup viewGroup) {
|
||||
this.a = viewGroup.getOverlay();
|
||||
}
|
||||
|
||||
@Override // androidx.transition.ViewOverlayImpl
|
||||
public void a(Drawable drawable) {
|
||||
this.a.add(drawable);
|
||||
}
|
||||
|
||||
@Override // androidx.transition.ViewOverlayImpl
|
||||
public void b(Drawable drawable) {
|
||||
this.a.remove(drawable);
|
||||
}
|
||||
|
||||
@Override // androidx.transition.ViewGroupOverlayImpl
|
||||
public void a(View view) {
|
||||
this.a.add(view);
|
||||
}
|
||||
|
||||
@Override // androidx.transition.ViewGroupOverlayImpl
|
||||
public void b(View view) {
|
||||
this.a.remove(view);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user