[fenix] For https://github.com/mozilla-mobile/fenix/issues/2160 - Hide Keyboard in onPause from EditBookmarkFragment

pull/600/head
Emily Kager 5 years ago committed by Emily Kager
parent ef1e6a91fa
commit 9b8522bf46

@ -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(),

Loading…
Cancel
Save