陈力
2023-06-09 cca5f79b3af36e5a908c5dfecbd30110febe3baa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.lotaai.canguiayw.smiledialog.enums;
 
import androidx.annotation.IntDef;
 
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
 
 
/**
 * Author: wangbl
 * Date: 2019-07-15 10:57
 * Email:js_wangbl@hotmail.com
 * Description:控件类型
 */
@Retention(RetentionPolicy.SOURCE)
@IntDef({WidgetTypes.TITLE, WidgetTypes.CONTENT, WidgetTypes.CONFORM, WidgetTypes.CANCEL})
public @interface WidgetTypes {
 
    int TITLE = 0;
    int CONTENT = 1;
    int CONFORM = 2;
    int CANCEL = 3;
}