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
| package com.zhaoyang.driver.utils.EasePopup;
|
| import androidx.annotation.IntDef;
|
| import java.lang.annotation.Retention;
| import java.lang.annotation.RetentionPolicy;
|
| /**
| * Created by zyyoona7 on 2017/8/3.
| */
|
| @IntDef({
| YGravity.CENTER,
| YGravity.ABOVE,
| YGravity.BELOW,
| YGravity.ALIGN_TOP,
| YGravity.ALIGN_BOTTOM,
| })
| @Retention(RetentionPolicy.SOURCE)
| public @interface YGravity {
| int CENTER = 0;
| int ABOVE = 1;
| int BELOW = 2;
| int ALIGN_TOP = 3;
| int ALIGN_BOTTOM = 4;
| }
|
|