sala7khaled
sala7khaled

Reputation: 13

the Button moves up when keyboard appears

Here I'm trying to add a medicine from the AutoCompleteTextView's suggestion into the RecyclerView

image

After choosing the medicine then click the green add icon

image

then the button moves up like this

I tried to put

android:windowSoftInputMode="stateVisible" , android:windowSoftInputMode="adjustPan" and android:windowSoftInputMode="adjustResize"

also tried android:fitsSystemWindows="true"

into my AndroidManifest but it didn't work. any help? Thanks for any help.

Upvotes: 0

Views: 802

Answers (1)

Marc Laliberté
Marc Laliberté

Reputation: 113

You are looking for

android:windowSoftInputMode="adjustNothing"

Upvotes: 1

Related Questions