]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/Misc.java
927a34d936b44326cfeed93aa9866ccd64ff770f
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / Misc.java
1 /*
2  * Copyright © 2020 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe 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  * MoLe 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 MoLe. 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.res.Configuration;
22 import android.text.Editable;
23 import android.view.WindowManager;
24
25 import androidx.annotation.Nullable;
26 import androidx.fragment.app.Fragment;
27 import androidx.fragment.app.FragmentActivity;
28
29 import org.jetbrains.annotations.Contract;
30
31 public class Misc {
32     public static boolean isZero(float f) {
33         return (f < 0.005) && (f > -0.005);
34     }
35     public static void showSoftKeyboard(Activity activity) {
36         // make the keyboard appear
37         Configuration cf = activity.getResources()
38                                    .getConfiguration();
39         if (cf.keyboard == Configuration.KEYBOARD_NOKEYS ||
40             cf.keyboardHidden == Configuration.KEYBOARDHIDDEN_YES)
41             activity.getWindow()
42                     .setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
43     }
44     public static void showSoftKeyboard(Fragment fragment) {
45         final FragmentActivity activity = fragment.getActivity();
46         if (activity != null)
47             showSoftKeyboard(activity);
48     }
49     public static void hideSoftKeyboard(Fragment fragment) {
50         final FragmentActivity activity = fragment.getActivity();
51         if (activity != null)
52             hideSoftKeyboard(activity);
53     }
54     public static void hideSoftKeyboard(Activity activity) {
55         Configuration cf = activity.getResources()
56                                    .getConfiguration();
57         if (cf.keyboard == Configuration.KEYBOARD_NOKEYS ||
58             cf.keyboardHidden == Configuration.KEYBOARDHIDDEN_NO)
59             activity.getWindow()
60                     .setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
61
62     }
63     public static String emptyIsNull(String str) {
64         return "".equals(str) ? null : str;
65     }
66     public static String nullIsEmpty(String str) {
67         return (str == null) ? "" : str;
68     }
69     public static String nullIsEmpty(Editable e) {
70         if (e == null)
71             return "";
72         return e.toString();
73     }
74     public static boolean equalStrings(String u, CharSequence text) {
75         return nullIsEmpty(u).equals(text.toString());
76     }
77     public static boolean equalStrings(String a, String b) {
78         return nullIsEmpty(a).equals(nullIsEmpty(b));
79     }
80     public static String trim(@Nullable String string) {
81         if (string == null)
82             return null;
83
84         return string.trim();
85     }
86     @Contract(value = "null, null -> true; null, !null -> false; !null, null -> false", pure = true)
87     public static boolean equalIntegers(Integer a, Integer b) {
88         if ( a == null && b == null) return true;
89         if (a == null || b == null) return false;
90
91         return a.equals(b);
92     }
93     @Contract(value = "null, null -> true; null, !null -> false; !null, null -> false", pure = true)
94     public static boolean equalLongs(Long a, Long b) {
95         if ( a == null && b == null) return true;
96         if (a == null || b == null) return false;
97
98         return a.equals(b);
99     }
100 }