I am trying to implement a chat screen , simillar to that of sample jetchat app.
Problem is keyboard is overlapping parts of input text field and panel consisting of emoji, send button etc.
Any idea why this is happening and how it can be corrected.
I am attaching screen shots of both screen for mine code and original code
j
Javier
09/30/2020, 2:20 PM
Probably checking jetchat example you can see where is the problem
y
Yann Badoual
09/30/2020, 2:25 PM
Jetchat is using
Copy code
android:windowSoftInputMode="adjustResize"
You seem to be on adjustPan
☝️ 6
a
Adam Powell
09/30/2020, 2:36 PM
We haven't wired up the autodetection of scrolling containers yet that Android uses to determine the default behavior for this parameter
👀 1
😮 1
p
Prashant Priyadarshi
09/30/2020, 2:56 PM
@Yann Badoual thanks a ton brother.. I wasted a lot of time over this..