From 56dfa4209b5e8856a0e591c0bccde647fa2ac75f Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 24 Jul 2020 12:17:48 +0200 Subject: [PATCH] Soft keyboard pushing views up fixed. And keyboard hides automatically when we get back to ListFragment --- app/src/main/AndroidManifest.xml | 5 ++++- .../todoapp/fragments/list/ListFragment.kt | 4 ++++ .../java/com/example/todoapp/utils/Utils.kt | 17 +++++++++++++++++ 3 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 app/src/main/java/com/example/todoapp/utils/Utils.kt diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f0510ce..16c1288 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -4,12 +4,15 @@ - + diff --git a/app/src/main/java/com/example/todoapp/fragments/list/ListFragment.kt b/app/src/main/java/com/example/todoapp/fragments/list/ListFragment.kt index fbfbd23..e138145 100644 --- a/app/src/main/java/com/example/todoapp/fragments/list/ListFragment.kt +++ b/app/src/main/java/com/example/todoapp/fragments/list/ListFragment.kt @@ -15,6 +15,7 @@ import com.example.todoapp.data.viewmodel.ToDoViewModel import com.example.todoapp.databinding.FragmentListBinding import com.example.todoapp.fragments.SharedViewModel import com.example.todoapp.fragments.list.adapter.ListAdapter +import com.example.todoapp.utils.hideKeyboard import com.google.android.material.snackbar.Snackbar import jp.wasabeef.recyclerview.animators.SlideInUpAnimator @@ -49,6 +50,9 @@ class ListFragment : Fragment(), SearchView.OnQueryTextListener { // Set Menu setHasOptionsMenu(true) + // Hide soft keyboard + hideKeyboard(requireActivity()) + return binding.root } diff --git a/app/src/main/java/com/example/todoapp/utils/Utils.kt b/app/src/main/java/com/example/todoapp/utils/Utils.kt new file mode 100644 index 0000000..ddf284f --- /dev/null +++ b/app/src/main/java/com/example/todoapp/utils/Utils.kt @@ -0,0 +1,17 @@ +package com.example.todoapp.utils + +import android.app.Activity +import android.content.Context +import android.view.inputmethod.InputMethodManager + +fun hideKeyboard(activity: Activity) { + val inputMethodManager = + activity.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager + + val currentFocusedView = activity.currentFocus + currentFocusedView?.let { + inputMethodManager.hideSoftInputFromWindow( + currentFocusedView.windowToken, InputMethodManager.HIDE_NOT_ALWAYS + ) + } +} \ No newline at end of file