I download data from the server and display it in a list. Above the list there is a field for searching through the list. The problem is that when you enter this activity, the keyboard immediately pops out. How to make the keyboard not get out?
2 answers
Here is the solution that helped:
<activity android:windowSoftInputMode="stateHidden"
...
- yes it meant it, it was described) corrected the answer - Roman Zakharov
|
Write in the AndroidManifest.xml
file for this windowSoftInputMode="stateHidden
" property, then when you first activate the keyboard, it will not be shown
- I registered this case, but the effect did not work. Anyway, the keyboard crawls out ... - Stas0n
- As soon as I enter activation, I see how the typing window immediately becomes active, after which the keyboard comes out ... - Stas0n
|