]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/Globals.java
e20e75b9df126b5d23674cc5eb8125d69e03678e
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / Globals.java
1 /*
2  * Copyright © 2019 Damyan Ivanov.
3  * This file is part of Mobile-Ledger.
4  * Mobile-Ledger is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * Mobile-Ledger is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Mobile-Ledger. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.utils;
19
20 import android.app.Activity;
21 import android.content.Context;
22 import android.support.annotation.ColorInt;
23 import android.view.View;
24 import android.view.inputmethod.InputMethodManager;
25
26 import java.text.ParseException;
27 import java.text.SimpleDateFormat;
28 import java.util.Date;
29 import java.util.Locale;
30
31 public final class Globals {
32     @ColorInt
33     public static int tableRowEvenBG;
34     @ColorInt
35     public static int tableRowOddBG;
36     @ColorInt
37     public static int primaryDark, defaultTextColor;
38     public static String[] monthNames;
39     private static SimpleDateFormat ledgerDateFormatter =
40             new SimpleDateFormat("yyyy/MM/dd", Locale.US);
41     public static void hideSoftKeyboard(Activity act) {
42         // hide the keyboard
43         View v = act.getCurrentFocus();
44         if (v != null) {
45             InputMethodManager imm =
46                     (InputMethodManager) act.getSystemService(Context.INPUT_METHOD_SERVICE);
47             imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
48         }
49     }
50     public static Date parseLedgerDate(String dateString) {
51         try {
52             return ledgerDateFormatter.parse(dateString);
53         }
54         catch (ParseException e) {
55             throw new RuntimeException(String.format("Error parsing date '%s'", dateString), e);
56         }
57     }
58     public static String formatLedgerDate(Date date) {
59         return ledgerDateFormatter.format(date);
60     }
61 }