-
Notifications
You must be signed in to change notification settings - Fork 98
Conversation
It would be nice to open an additional issue if we're not able to fix that as part of this PR. I had noticed this on 3.0 when unlocking from biometrics, but hadn't had a chance to log. |
Filed #1027. |
7e2e2ca
to
9d98913
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have a suggestion, which you can take if you want. This looks fine otherwise and shouldn't need another review cycle.
errorHelper.hideNetworkError(parent = view!!, child = view!!.refreshContainer.entriesView) | ||
errorHelper.hideNetworkError( | ||
parent = view!!, | ||
child = view!!.refreshContainer.entriesView |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😻
private fun closeKeyboard() { | ||
val imm = context?.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager | ||
imm.hideSoftInputFromWindow(view!!.windowToken, 0) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder whether we should put this into the base Fragment
class and call it from the base onPause()
method.
9d98913
to
aa0074b
Compare
Fixes #992
Testing and Review Notes
Hiding the keyboard on
onPause()
for theLockedFragment
. There's a little bit of a "flash" of the splash screen in between unlocking and the item list. Not sure if we should open a issue to fix that, or ...?Screenshots or Videos
To Do