I have a ListView with some focusable components inside (mostly EditText
s). Yeah, I know this isn\'t exactly recommended, but in general, almost everything is w
I faced the same problem when using EditText
in Recyclerview
. After a lot of struggle and trying different option i found out the after deleting the row when my keyboard is opened produces this issue. I solved it by force closing my keyboard and changing notifyItemRemoved(position)
with notifyDataSetChanged()
.