labatyo
labatyo

Reputation: 486

Android keyboard on top of layout

I want the soft keyboard to be overtop of my layout, not move my layout around when it pops up. How do I do this? I looked in my manifest and i never set android:windowSoftInputMode="adjustResize"

Also, I have several other activities that are almost identical, but work properly.

Upvotes: 1

Views: 860

Answers (2)

Tom Bevelander
Tom Bevelander

Reputation: 1716

I just fixed a situation with only a RecyclerView in the layout. The default behaviour was adjustResize

android:windowSoftInputMode="adjustNothing" 

did the trick

Upvotes: 0

Flynny75
Flynny75

Reputation: 1593

Its the default behaviour. You need to explicitly include android:windowSoftInputMode="adjustPan" to make it NOT resize the window see docs

Upvotes: 1

Related Questions