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"