Soft keyboard pushing views up fixed. And keyboard hides automatically when we get back to ListFragment

This commit is contained in:
Stefan 2020-07-24 12:17:48 +02:00
parent 5935063aa3
commit 56dfa4209b
3 changed files with 25 additions and 1 deletions

View File

@ -4,12 +4,15 @@
<application
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity
android:name=".MainActivity"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />

View File

@ -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
}

View File

@ -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
)
}
}