Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ProgressUtils.java « utils « wolfi « es « java « main « src « app - github.com/nextcloud/passman-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af9c3a0502d7a8f8e79cf423da68c3264598a87f (plain)
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
/**
 * Passman Android App
 *
 * @copyright Copyright (c) 2021, Sander Brand (brantje@gmail.com)
 * @copyright Copyright (c) 2021, Marcos Zuriaga Miguel (wolfi@wolfi.es)
 * @copyright Copyright (c) 2021, Timo Triebensky (timo@binsky.org)
 * @license GNU AGPL version 3 or any later version
 * <p>
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 * <p>
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 * <p>
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

package es.wolfi.utils;

import android.app.ProgressDialog;
import android.content.Context;

import es.wolfi.app.passman.R;

public class ProgressUtils {
    /**
     * Creates and starts a unified loading sequence dialog
     *
     * @param context App context from view
     * @return ProgressDialog required to dismiss the dialog
     */
    public static ProgressDialog showLoadingSequence(Context context) {
        return show(context, context.getString(R.string.loading), context.getString(R.string.wait_while_loading), false);
    }

    /**
     * Creates and starts a custom progress dialog
     *
     * @param context    App context from view
     * @param title      Progress dialog title
     * @param message    Progress dialog message
     * @param cancelable Set if the dialog should be cancelable by the user
     * @return ProgressDialog required to dismiss the dialog
     */
    public static ProgressDialog show(Context context, String title, String message, boolean cancelable) {
        final ProgressDialog progress = new ProgressDialog(context);
        progress.setTitle(title);
        progress.setMessage(message);
        progress.setCancelable(cancelable);
        progress.show();

        return progress;
    }

    /**
     * Checks if a dialog is shown and calls dismiss() on it if possible
     *
     * @param progress progress dialog to dismiss
     */
    public static void dismiss(ProgressDialog progress) {
        if (progress != null) {
            if (progress.isShowing()) {
                progress.dismiss();
            }
        }
    }
}