Skip to content Skip to sidebar Skip to footer

Adjustpan With Edittext At Bottom Of Layout Causes Softkeyboard To Slightly Obscure Edittext View

Been looking through various threads to figure this out but I'm still stumped. When I apply 'adjustPan' to an activity with an EditText at the bottom, the UI is pushed up correctly

Solution 1:

Try adding android:windowSoftInputMode="adjustResize" into the activity section of your AndroidManifest.xml file.

<activity>
        android:name=".MainActivity"
        android:windowSoftInputMode="adjustResize" 
</activity>

Post a Comment for "Adjustpan With Edittext At Bottom Of Layout Causes Softkeyboard To Slightly Obscure Edittext View"