-
Notifications
You must be signed in to change notification settings - Fork 3
/
DialogUtil.java
292 lines (270 loc) · 13.6 KB
/
DialogUtil.java
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package com.android.kickstart.utils;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.provider.Settings;
import android.support.v7.app.AlertDialog;
import android.text.Spanned;
public class DialogUtil {
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
*/
public static void showAlertDialog(Context context, String title, String message, String positiveButtonName) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param isCancelable : true for cancelable, false for non cancelable
*/
public static void showAlertDialog(Context context, String title, String message, String positiveButtonName, boolean isCancelable) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setCancelable(isCancelable);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Spannable message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param mAlertDialogListener : AlertDialog callback listener
*/
public static void showAlertDialog(Context context, String title, Spanned message, String positiveButtonName, final AlertDialogListener mAlertDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mAlertDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param mAlertDialogListener : AlertDialog callback listener
*/
public static void showAlertDialog(Context context, String title, String message, String positiveButtonName, final AlertDialogListener mAlertDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mAlertDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Spannable message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param isCancelable : true for cancelable, false for non cancelable
* @param mAlertDialogListener : AlertDialog callback listener
*/
public static void showAlertDialog(Context context, String title, Spanned message, String positiveButtonName, boolean isCancelable, final AlertDialogListener mAlertDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setCancelable(isCancelable);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mAlertDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param isCancelable : true for cancelable, false for non cancelable
* @param mAlertDialogListener : AlertDialog callback listener
*/
public static void showAlertDialog(Context context, String title, String message, String positiveButtonName, boolean isCancelable, final AlertDialogListener mAlertDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setCancelable(isCancelable);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mAlertDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.show();
}
public interface AlertDialogListener {
public void onPositiveButtonClick(DialogInterface dialog, int which);
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param negativeButtonName : Negative button name
*/
public static void showConfirmDialog(Context context, String title, String message, String positiveButtonName, String negativeButtonName) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
alertDialog.setNegativeButton(negativeButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param negativeButtonName : Negative button name
* @param mDialogListener : AlertDialog callback listener
*/
public static void showConfirmDialog(Context context, String title, String message, String positiveButtonName, String negativeButtonName, final ConfirmDialogListener mDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.setNegativeButton(negativeButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onNegativeButtonClick(dialog, which);
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param negativeButtonName : Negative button name
* @param isCancelable : true for cancelable, false for non cancelable
* @param mDialogListener : AlertDialog callback listener
*/
public static void showConfirmDialog(Context context, String title, String message, String positiveButtonName, String negativeButtonName,Boolean isCancelable, final ConfirmDialogListener mDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setCancelable(isCancelable);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.setNegativeButton(negativeButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onNegativeButtonClick(dialog, which);
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Spannable message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param negativeButtonName : Negative button name
* @param mDialogListener : AlertDialog callback listener
*/
public static void showConfirmDialog(Context context, String title, Spanned message, String positiveButtonName, String negativeButtonName, final ConfirmDialogListener mDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.setNegativeButton(negativeButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onNegativeButtonClick(dialog, which);
}
});
alertDialog.show();
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Spannable message that you need to show in AlertDialog
* @param positiveButtonName : Positive button name
* @param negativeButtonName : Negative button name
* @param isCancelable : true for cancelable, false for non cancelable
* @param mDialogListener : AlertDialog callback listener
*/
public static void showConfirmDialog(Context context, String title, Spanned message, String positiveButtonName, String negativeButtonName,Boolean isCancelable, final ConfirmDialogListener mDialogListener) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setCancelable(isCancelable);
alertDialog.setPositiveButton(positiveButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onPositiveButtonClick(dialog, which);
}
});
alertDialog.setNegativeButton(negativeButtonName, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
mDialogListener.onNegativeButtonClick(dialog, which);
}
});
alertDialog.show();
}
public interface ConfirmDialogListener {
public void onPositiveButtonClick(DialogInterface dialog, int which);
public void onNegativeButtonClick(DialogInterface dialog, int which);
}
/**
* @param context : Context of Activity or Fragment
* @param title : Title that you need to show in AlertDialog
* @param message : Message that you need to show in AlertDialog
*/
public static void GPSAlertDialog(final Context context, String title, String message) {
AlertDialog.Builder alertDialog = new AlertDialog.Builder(context);
alertDialog.setTitle(title);
alertDialog.setMessage(message);
alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
context.startActivity(intent);
}
});
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
}
});
alertDialog.show();
}
}