]> git.ktnx.net Git - mobile-ledger-staging.git/blob - app/src/main/java/net/ktnx/mobileledger/utils/Misc.java
migrate profile detail fragment to view binding
[mobile-ledger-staging.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 public class Misc {
30     public static boolean isZero(float f) {
31         return (f < 0.005) && (f > -0.005);
32     }
33     public static void showSoftKeyboard(Activity activity) {
34         // make the keyboard appear
35         Configuration cf = activity.getResources()
36                                    .getConfiguration();
37         if (cf.keyboard == Configuration.KEYBOARD_NOKEYS ||
38             cf.keyboardHidden == Configuration.KEYBOARDHIDDEN_YES)
39             activity.getWindow()
40                     .setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
41     }
42     public static void showSoftKeyboard(Fragment fragment) {
43         final FragmentActivity activity = fragment.getActivity();
44         if (activity != null)
45             showSoftKeyboard(activity);
46     }
47     public static void hideSoftKeyboard(Fragment fragment) {
48         final FragmentActivity activity = fragment.getActivity();
49         if (activity != null)
50             hideSoftKeyboard(activity);
51     }
52     public static void hideSoftKeyboard(Activity activity) {
53         Configuration cf = activity.getResources()
54                                    .getConfiguration();
55         if (cf.keyboard == Configuration.KEYBOARD_NOKEYS ||
56             cf.keyboardHidden == Configuration.KEYBOARDHIDDEN_NO)
57             activity.getWindow()
58                     .setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
59
60     }
61     public static String emptyIsNull(String str) {
62         return "".equals(str) ? null : str;
63     }
64     public static String nullIsEmpty(String str) {
65         return (str == null) ? "" : str;
66     }
67     public static String nullIsEmpty(Editable e) {
68         if (e == null)
69             return "";
70         return e.toString();
71     }
72     public static boolean equalStrings(String u, CharSequence text) {
73         return nullIsEmpty(u).equals(text.toString());
74     }
75     public static boolean equalStrings(String a, String b) {
76         return nullIsEmpty(a).equals(nullIsEmpty(b));
77     }
78     public static String trim(@Nullable String string) {
79         if (string == null)
80             return null;
81
82         return string.trim();
83     }
84 }