The first thing I did was in the onCreate(); method of my activity.
getWindow().setSoftInputMode(WindowManager().LayourParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
The second thing I did was in the manifest file.
android:windowSoftInputMode="stateAlwaysHidden"
But both of them didn't work! Still when I click on EditText. Keyboard APPEARS.
Before clicking Locationenter image description here
After clicking enter image description here
I don't want the keyboard at the background. What should I do?