I want to build a message layout like WhatsApp. I have an EditText
and a RecyclerView
.
The problem is when the keyboard appears, it hide the messages at the bottom of the list.
So let's say this the RecyclerView
:
---item 1---
---item 2---
---item 3---
---item 4---
---EditText---
when the the keyboard appears, I get this:
---item 1---
---item 2---
---EditText---
---Keyboard---
but I want to get this:
---item 3---
---item 4---
---EditText---
---Keyboard---
NOTE: when I set linearLayoutManager.setStackFromEnd(true);
it works but when there is one message it appears at the bottom of the page.