Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 ?

like image 723
Nitin Avatar asked Mar 23 '23 00:03

Nitin


1 Answers

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.

like image 56
Leo Landau Avatar answered Apr 26 '23 14:04

Leo Landau