I have created a chat activity and like facebook messenger, there is an EditText at the bottom and above is the RecyclerView of messages. When Keyboard opens, I want to scro
I had the same problem and I don't want to set windowSoftInputMode to "adjustResize". The above anwsers do not work for me.
editText.clearFocused();
hideKeyboard();
// update your adapter ...
parent.requestLayout();
Reset the focus of the parent layout and the recylerView will be updated correctlly.