Linjiajia
2023-05-15 a0dc6be52293a64ebfe38b8c2391dc7d2ffe63ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package com.android.app_base.base.action;
 
 
import com.android.app_base.R;
 
/**
 * 动画样式
 */
 
public interface AnimAction {
 
    /** 默认动画效果 */
    int ANIM_DEFAULT = -1;
 
    /** 没有动画效果 */
    int ANIM_EMPTY = 0;
 
    /** 缩放动画 */
    int ANIM_SCALE = R.style.ScaleAnimStyle;
 
    /** IOS 动画 */
    int ANIM_IOS = R.style.IOSAnimStyle;
 
    /** 吐司动画 */
    int ANIM_TOAST = android.R.style.Animation_Toast;
 
    /** 顶部弹出动画 */
    int ANIM_TOP = R.style.TopAnimStyle;
 
    /** 底部弹出动画 */
    int ANIM_BOTTOM = R.style.BottomAnimStyle;
 
    /** 左边弹出动画 */
    int ANIM_LEFT = R.style.LeftAnimStyle;
 
    /** 右边弹出动画 */
    int ANIM_RIGHT = R.style.RightAnimStyle;
}