Skip to content Skip to sidebar Skip to footer

Soft Keyboard Pushing Up Layout Or Hidding Action Bar

I have an issue with soft keyboard on my project. I already have set my Manifest file with android:windowSoftInputMode='adjustPan' With that my keyboard and EditText are visible.

Solution 1:

It might be late to be answering this question but I faced it and found a solution so thought of sharing it.

give the property

android:isScrollContainer="false" to your parent in Layout

and

android:windowSoftInputMode="adjustResize" for Activity in AndroidManifest.xml

Solution 2:

android:windowSoftInputMode="adjustNothing" try this

Solution 3:

try this in your manifest: android:windowSoftInputMode="adjustResize|stateHidden"

Post a Comment for "Soft Keyboard Pushing Up Layout Or Hidding Action Bar"