Android: windowSoftInputMode
Android: windowSoftInputMode
The interaction mode between the activity main window and the soft keyboard can be used to avoid the problem of blocking the input method panel. This is a new feature after Android1.5.
This attribute can affect two things:
[1] whether the keyboard is hidden or displayed when a focus is generated
[2] whether to reduce the size of the main activity window to free up space and put it on the keyboard
It must be set to a value in the following list or a "state ..." Add "adjust…" to the value ..." Value combination. Set multiple values in any group-multiple "states ..." Values. For example, & mdash has undefined results. Use | to separate values. Example: <activity android: windowSoftInputMode = "stateVisible | adjustResize"...>
The value set here (except "stateUnspecified" and "adjustUnspecified") will overwrite the value set in the topic
Meanings of values:
[A] stateUnspecified: the soft keyboard status is not specified. The system selects an appropriate status or depends on the topic settings.
[B] stateUnchanged: When this activity appears, the soft keyboard will remain in the status of the previous activity, whether hidden or displayed.
[C] stateHidden: When you select activity, the keyboard is always hidden.
[D] stateAlwaysHidden: when the Activity's Main Window gets the focus, the keyboard is always hidden.
[E] stateVisible: the soft keyboard is usually visible.
[F] stateAlwaysVisible: when the activity is selected, the soft keyboard always displays the status
[G] adjustUnspecified: the default setting. It is usually determined by the system whether to hide or display it.
[H] adjustResize: This Activity always adjusts the screen size to reserve space for the soft keyboard.
[I] adjustPan: the content in the current window will be automatically moved so that the current focus is not overwritten by the keyboard and the user can always see the input content.
Example:
1. android: windowSoftInputMode = "adjustPan | adjustResize"
Ask the question you asked before: android development: How does one top the layout when the keyboard is displayed? Is it a layout problem?
I used ScrollView to set the content. After the software Disk pops up, I used code to control the position of the ScrollView scroll bar and located the scroll bar in the content section.
[Android UI] How to Use ScrollView to cover edittext with a soft keyboard
Why does the landlord achieve this? After doing so, the editing box may be pushed to an invisible position...