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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
package cgeo.geocaching.ui.dialog;
import cgeo.geocaching.CgeoApplication;
import cgeo.geocaching.R;
import org.apache.commons.lang3.StringUtils;
import org.eclipse.jdt.annotation.Nullable;
import rx.functions.Action1;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.graphics.drawable.Drawable;
import android.text.Editable;
import android.text.InputType;
import android.text.TextWatcher;
import android.view.ContextThemeWrapper;
import android.view.WindowManager;
import android.widget.EditText;
/**
* Wrapper for {@link AlertDialog}. If you want to show a simple text, use one of the
* {@link #message(Activity, String, String, Drawable)} variants. If you want the user to confirm using Okay/Cancel or
* Yes/No, select one of the {@link #confirm(Activity, String, String, String, OnClickListener)} or
* {@link #confirmYesNo(Activity, String, String, OnClickListener)} variants.
*
*/
public final class Dialogs {
private Dialogs() {
// utility class
}
/**
* Confirm using two buttons "yourText" and "Cancel", where "Cancel" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param positiveButton
* text of the positive button (which would typically be the OK button)
* @param okayListener
* listener of the positive button
*/
public static AlertDialog.Builder confirm(final Activity context, final String title, final String msg, final String positiveButton, final OnClickListener okayListener) {
AlertDialog.Builder builder = new AlertDialog.Builder(context);
AlertDialog dialog = builder.setTitle(title)
.setCancelable(true)
.setMessage(msg)
.setPositiveButton(positiveButton, okayListener)
.setNegativeButton(android.R.string.cancel, null)
.create();
dialog.setOwnerActivity(context);
dialog.show();
return builder;
}
/**
* Confirm using two buttons "yourText" and "Cancel", where "Cancel" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param positiveButton
* text of the positive button (which would typically be the OK button)
* @param okayListener
* listener of the positive button
*/
public static AlertDialog.Builder confirm(final Activity context, final int title, final int msg, final int positiveButton, final OnClickListener okayListener) {
return confirm(context, getString(title), getString(msg), getString(positiveButton), okayListener);
}
/**
* Confirm using two buttons "Yes" and "No", where "No" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param yesListener
* listener of the positive button
*/
public static AlertDialog.Builder confirmYesNo(final Activity context, final String title, final String msg, final OnClickListener yesListener) {
AlertDialog.Builder builder = new AlertDialog.Builder(context);
AlertDialog dialog = builder.setTitle(title)
.setCancelable(true)
.setMessage(msg)
.setPositiveButton(android.R.string.yes, yesListener)
.setNegativeButton(android.R.string.no, null)
.create();
dialog.setOwnerActivity(context);
dialog.show();
return builder;
}
/**
* Confirm using two buttons "Yes" and "No", where "No" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param yesListener
* listener of the positive button
*/
public static AlertDialog.Builder confirmYesNo(final Activity context, final String title, final int msg, final OnClickListener yesListener) {
return confirmYesNo(context, title, getString(msg), yesListener);
}
/**
* Confirm using two buttons "Yes" and "No", where "No" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param yesListener
* listener of the positive button
*/
public static AlertDialog.Builder confirmYesNo(final Activity context, final int title, final String msg, final OnClickListener yesListener) {
return confirmYesNo(context, getString(title), msg, yesListener);
}
/**
* Confirm using two buttons "Yes" and "No", where "No" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param yesListener
* listener of the positive button
*/
public static AlertDialog.Builder confirmYesNo(final Activity context, final int title, final int msg, final OnClickListener yesListener) {
return confirmYesNo(context, getString(title), getString(msg), yesListener);
}
/**
* Confirm using two buttons "OK" and "Cancel", where "Cancel" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param okayListener
* listener of the positive button
*/
public static AlertDialog.Builder confirm(final Activity context, final String title, final String msg, final OnClickListener okayListener) {
return confirm(context, title, msg, getString(android.R.string.ok), okayListener);
}
/**
* Confirm using two buttons "OK" and "Cancel", where "Cancel" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param okayListener
* listener of the positive button
*/
public static AlertDialog.Builder confirm(final Activity context, final int title, final String msg, final OnClickListener okayListener) {
return confirm(context, getString(title), msg, okayListener);
}
/**
* Confirm using two buttons "OK" and "Cancel", where "Cancel" just closes the dialog.
*
* @param context
* activity hosting the dialog
* @param title
* dialog title
* @param msg
* dialog message
* @param okayListener
* listener of the positive button
*/
public static AlertDialog.Builder confirm(final Activity context, final int title, final int msg, final OnClickListener okayListener) {
return confirm(context, getString(title), getString(msg), okayListener);
}
private static String getString(int resourceId) {
return CgeoApplication.getInstance().getString(resourceId);
}
/**
* Show a message dialog with a single "OK" button.
*
* @param context
* activity owning the dialog
* @param message
* message dialog content
*/
public static void message(final Activity context, final String message) {
message(context, null, message);
}
/**
* Show a message dialog with a single "OK" button.
*
* @param context
* activity owning the dialog
* @param message
* message dialog content
*/
public static void message(final Activity context, final int message) {
message(context, null, getString(message));
}
/**
* Show a message dialog with a single "OK" button.
*
* @param context
* activity owning the dialog
* @param title
* message dialog title
* @param message
* message dialog content
*/
public static void message(final Activity context, final @Nullable String title, final String message) {
message(context, title, message, null);
}
/**
* Show a message dialog with a single "OK" button and an icon.
*
* @param context
* activity owning the dialog
* @param title
* message dialog title
* @param message
* message dialog content
* @param icon
* message dialog title icon
*/
public static void message(final Activity context, final @Nullable String title, final String message, final @Nullable Drawable icon) {
Builder builder = new AlertDialog.Builder(context)
.setMessage(message)
.setCancelable(true)
.setPositiveButton(getString(android.R.string.ok), null);
if (title != null) {
builder.setTitle(title);
}
if (icon != null) {
builder.setIcon(icon);
}
builder.create().show();
}
/**
* Show a message dialog with a single "OK" button and an icon.
*
* @param context
* activity owning the dialog
* @param title
* message dialog title
* @param message
* message dialog content
*/
public static void message(final Activity context, final int title, final String message) {
message(context, getString(title), message);
}
/**
* Show a message dialog with a single "OK" button and an icon.
*
* @param context
* activity owning the dialog
* @param title
* message dialog title
* @param message
* message dialog content
*/
public static void message(final Activity context, final int title, final int message) {
message(context, getString(title), getString(message));
}
/**
* Show a message dialog with a single "OK" button and an icon.
*
* @param context
* activity owning the dialog
* @param title
* message dialog title
* @param message
* message dialog content
* @param icon
* message dialog title icon
*/
public static void message(final Activity context, final int title, final int message, final @Nullable Drawable icon) {
message(context, getString(title), getString(message), icon);
}
/**
* Show a message dialog for input from the user. The okay button is only enabled on non empty input.
*
* @param context
* activity owning the dialog
* @param title
* message dialog title
* @param defaultValue
* default input value
* @param buttonTitle
* title of the okay button
* @param okayListener
* listener to be run on okay
*/
public static void input(final Activity context, final int title, final String defaultValue, final int buttonTitle, final Action1<String> okayListener) {
final Context themedContext = new ContextThemeWrapper(context, R.style.dark);
final EditText input = new EditText(themedContext);
input.setInputType(InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_CLASS_TEXT);
input.setText(defaultValue);
final AlertDialog.Builder builder = new AlertDialog.Builder(themedContext);
builder.setTitle(title);
builder.setView(input);
builder.setPositiveButton(buttonTitle, new OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
okayListener.call(input.getText().toString());
}
});
builder.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int whichButton) {
dialog.dismiss();
}
});
final AlertDialog dialog = builder.create();
input.addTextChangedListener(new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// empty
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
// empty
}
@Override
public void afterTextChanged(Editable editable) {
enableDialogButtonIfNotEmpty(dialog, editable.toString());
}
});
// force keyboard
dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
// disable button
dialog.show();
enableDialogButtonIfNotEmpty(dialog, defaultValue);
moveCursorToEnd(input);
}
/**
* Move the cursor to the end of the input field.
*
* @param input
*/
public static void moveCursorToEnd(final EditText input) {
input.setSelection(input.getText().length(), input.getText().length());
}
private static void enableDialogButtonIfNotEmpty(final AlertDialog dialog, final String input) {
dialog.getButton(DialogInterface.BUTTON_POSITIVE).setEnabled(StringUtils.isNotBlank(input));
}
}
|