Reputation: 2115
When the keyboard appears the RecyclerView doesn't automatically scroll to the position of the selected input field. So the keyboard gets over the selected field.
I tried to add android:windowSoftInputMode="stateVisible|adjustResize"
to the activity as suggested in other questions but no luck.
Upvotes: 0
Views: 1810
Reputation: 38273
Which layout manager are you using? There is a bug fix about this, but should work in most cases. The bugfix will be released in the next one or after :/, meanwhile, it might work to call scrollToPosition(clickedItemPosition)
when keyboard comes up. (TextView focus)
Upvotes: 1