Search code examples
androidkeyboardandroid-softkeyboardandroid-input-method

Android app does not refresh after soft-keyboard is hidden


After entering text using android soft-keyboard and manually closing it using the key available below the keyboard, the app page is not getting refreshed. A black space is shown where the keyboard had existed.

I tried with various options available for windowSoftInputMode and it does not fix this issue. Sadly, adjustPan is not showing its expected behavior. The keyboard hides the text fields when the windowSoftInputMode is set to adjustPan.

How can I make the page refresh after the soft-keyboard is hidden so as to eliminate this problem ?


Solution

  • Depending upon your circumstances, adding

    android:windowSoftInputMode="adjustPan"
    

    or

    android:windowSoftInputMode="adjustNothing"
    

    to the activity tag in the manifest may solve the issue.

    Both worked in my case.