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;
|
}
|