Android does not automatically pop up the keyboard, android pop up the keyboard
Go to the new Activity page. To prevent the soft keyboard from automatically popping up, set it in the Activity corresponding to AndroidManifest. xml.
Android: windowSoftInputMode = "adjustUnspecified | stateHidden"
The keyboard cannot be automatically displayed on Android phones.
It may be that the default settings are cleared. We recommend that you use a new one, such as sogou and Baidu input methods.
How does one set the default pop-up for the Android keypad?
During Anroid development, when you open an interface, the screen focus will automatically stay in the first EditText, And the Android Soft Keyboard will automatically pop up by default, when the user does not even see the UI clearly at first glance, the keyboard pops up, which affects the user experience. When we need to set the interface to open, when EditText gets the focus, the Code is as follows:
// GetWindow (). setSoftInputMode (WindowManager. LayoutParams. SOFT_INPUT_STATE_HIDDEN) is not displayed on the default keyboard );
In the OnCreate () function, add "OK.