admin
2022-08-09 399ac289f80b7a40aa4210341db6b447cacdcf14
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.app.hubert.guide.listener;
 
import android.view.animation.Animation;
 
/**
 * Created by hubert on 2018/2/12.
 */
 
public abstract class AnimationListenerAdapter implements Animation.AnimationListener {
    @Override
    public void onAnimationStart(Animation animation) {
 
    }
 
    @Override
    public void onAnimationEnd(Animation animation) {
 
    }
 
    @Override
    public void onAnimationRepeat(Animation animation) {
 
    }
}