Activity has an element windowSoftInputMode
to interact with a on-screen soft keyboard.
There are many suggestions How to adjust layout when soft keyboard appears, but sometimes it does not work.
Why?
Because we set it at AndroidManifest.xml
.
1
|
|
But if we use a theme in our application this property is overrided:
1 2 3 4 5 |
|
Hence we need to override it in our theme:
1 2 3 |
|
After we can use it at AndroidManifest.xml
:
1
|
|