1
0
Fork 0

For #2160 - Hide Keyboard in onPause from EditBookmarkFragment

master
Emily Kager 2019-07-16 17:02:48 -07:00 committed by Emily Kager
parent 68dae52fd1
commit 8381025ac5
1 changed files with 7 additions and 0 deletions

View File

@ -35,6 +35,7 @@ import mozilla.appservices.places.UrlParseFailed
import mozilla.components.concept.storage.BookmarkInfo
import mozilla.components.concept.storage.BookmarkNode
import mozilla.components.concept.storage.BookmarkNodeType
import mozilla.components.support.ktx.android.view.hideKeyboard
import org.mozilla.fenix.R
import org.mozilla.fenix.components.metrics.Event
import org.mozilla.fenix.ext.getColorFromAttr
@ -120,6 +121,12 @@ class EditBookmarkFragment : Fragment() {
updateBookmarkFromObservableInput()
}
override fun onPause() {
super.onPause()
bookmark_name_edit.hideKeyboard()
bookmark_url_edit.hideKeyboard()
}
private fun updateBookmarkFromObservableInput() {
Observable.combineLatest(
bookmark_name_edit.textChanges().skipInitialValue(),