LayerDialog.java
3.36 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package com.wd.common.dialog;
import android.app.Dialog;
import android.content.Context;
import android.view.View;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.wd.common.interfaces.IDialogActionInterface;
import java.util.ArrayList;
/**
* @author LiuKun
* @date 2023/5/2 15:51
* @Description:公共dialog
*/
public class LayerDialog extends Dialog {
private ArrayList<IDialogActionInterface.OnShowListener> mShowList;
private ArrayList<IDialogActionInterface.OnDismissListener> mDismissList;
private String dialogTag;
public LayerDialog(@NonNull Context context) {
super(context);
}
public LayerDialog(@NonNull Context context, int themeResId) {
super(context, themeResId);
}
protected LayerDialog(@NonNull Context context, boolean cancelable, @Nullable OnCancelListener cancelListener) {
super(context, cancelable, cancelListener);
}
@Override
public void setContentView(@NonNull final View view) {
super.setContentView(view);
}
@Override
public void setContentView(int layoutResID) {
View viewChild = getLayoutInflater().inflate(layoutResID, null);
setContentView(viewChild);
}
@Override
public void show() {
try {
// if (getContext() instanceof Activity) {
// if (((Activity) getContext()).isFinishing()){
// return;
// }
// }
super.show();
notifyShow();
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void dismiss() {
try {
super.dismiss();
notifyDismiss();
} catch (Exception e) {
e.printStackTrace();
}
clear();
}
public void addOnShowListener(IDialogActionInterface.OnShowListener listener) {
if (listener == null) {
return;
}
if (mShowList == null) {
mShowList = new ArrayList<>();
}
mShowList.add(listener);
}
public void addOnDismissListener(IDialogActionInterface.OnDismissListener listener) {
if (listener == null) {
return;
}
if (mDismissList == null) {
mDismissList = new ArrayList<>();
}
mDismissList.add(listener);
}
/**
* 显示
*/
private void notifyShow() {
if (mShowList != null) {
for (IDialogActionInterface.OnShowListener listener : mShowList) {
listener.onShow(LayerDialog.this);
mShowList.remove(listener);
}
}
}
/**
* 隐藏
*/
private void notifyDismiss() {
if (mDismissList != null) {
for (IDialogActionInterface.OnDismissListener listener : mDismissList) {
listener.onDismiss(LayerDialog.this);
mDismissList.remove(listener);
}
}
}
private void clear() {
if (mDismissList != null) {
mDismissList.clear();
mDismissList = null;
}
if (mShowList != null) {
mShowList.clear();
mShowList = null;
}
}
public String getDialogTag() {
return dialogTag;
}
public void setDialogTag(String dialogTag) {
this.dialogTag = dialogTag;
}
}