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