ADD week 5
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package com.google.android.material.internal;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.view.View;
|
||||
import android.view.ViewOverlay;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
class ViewOverlayApi18 implements ViewOverlayImpl {
|
||||
private final ViewOverlay viewOverlay;
|
||||
|
||||
ViewOverlayApi18(View view) {
|
||||
this.viewOverlay = view.getOverlay();
|
||||
}
|
||||
|
||||
@Override // com.google.android.material.internal.ViewOverlayImpl
|
||||
public void add(Drawable drawable) {
|
||||
this.viewOverlay.add(drawable);
|
||||
}
|
||||
|
||||
@Override // com.google.android.material.internal.ViewOverlayImpl
|
||||
public void remove(Drawable drawable) {
|
||||
this.viewOverlay.remove(drawable);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user