]> git.ktnx.net Git - mobile-ledger.git/blobdiff - app/src/main/java/net/ktnx/mobileledger/utils/Misc.java
make soft keyboard appear when new transaction description/account gets focus
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / utils / Misc.java
index ee6f5a746cf0f44761ee29bbf3bf3774084bc192..3fae49f1665a6e28bd583a67d5564e351b9878b7 100644 (file)
 
 package net.ktnx.mobileledger.utils;
 
+import android.app.Activity;
+import android.view.WindowManager;
+
+import androidx.fragment.app.Fragment;
+
 public class Misc {
     public static boolean isZero(float f) {
         return (f < 0.005) && (f > -0.005);
     }
+    public static void showSoftKeyboard(Activity activity) {
+        // make the keyboard appear
+        activity.getWindow()
+                .setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
+    }
+    public static void showSoftKeyboard(Fragment fragment) {
+        // make the keyboard appear
+        fragment.getActivity()
+                .getWindow()
+                .setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
+    }
 }