1// Signature format: 4.0
2package androidx.vectordrawable.graphics.drawable {
3
4  public class SeekableAnimatedVectorDrawable extends android.graphics.drawable.Drawable implements android.graphics.drawable.Animatable {
5    method public void clearAnimationCallbacks();
6    method public static androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable? create(android.content.Context, @DrawableRes int);
7    method public static androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable createFromXmlInner(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme?) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
8    method public void draw(android.graphics.Canvas);
9    method @IntRange(from=0) public long getCurrentPlayTime();
10    method @Deprecated public int getOpacity();
11    method public long getTotalDuration();
12    method public boolean isPaused();
13    method public boolean isRunning();
14    method public void pause();
15    method public void registerAnimationCallback(androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable.AnimationCallback);
16    method public void resume();
17    method public void setAlpha(@IntRange(from=0, to=255) int);
18    method public void setColorFilter(android.graphics.ColorFilter?);
19    method public void setCurrentPlayTime(@IntRange(from=0) long);
20    method public void start();
21    method public void stop();
22    method public boolean unregisterAnimationCallback(androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable.AnimationCallback);
23  }
24
25  public abstract static class SeekableAnimatedVectorDrawable.AnimationCallback {
26    ctor public SeekableAnimatedVectorDrawable.AnimationCallback();
27    method public void onAnimationEnd(androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable);
28    method public void onAnimationPause(androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable);
29    method public void onAnimationResume(androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable);
30    method public void onAnimationStart(androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable);
31    method public void onAnimationUpdate(androidx.vectordrawable.graphics.drawable.SeekableAnimatedVectorDrawable);
32  }
33
34}
35
36