Reputation: 13
Here I'm trying to add a medicine from the AutoCompleteTextView's suggestion into the RecyclerView
After choosing the medicine then click the green add icon
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
Reputation: 113
You are looking for
android:windowSoftInputMode="adjustNothing"
Upvotes: 1