The Androidmanifest.xml File
android:windowsoftinputmode=["Stateunspecified",
"Stateunchanged", "Statehidden",
"Statealwayshidden", "statevisible",
"Statealwaysvisible", "adjustunspecified",
"Adjustresize", "Adjustpan"] ... >
Attributes
Android:windowsoftinputmode
How the active main window interacts with the Soft keyboard window on the containing screen. The setting of this property will affect two things:
1> the state of the soft keyboard-whether it is hidden or displayed-when the activity becomes the focus of the user's attention.
2> Active main Window adjustment-whether to reduce the active main window size to make room for a soft keyboard or whether the current focus of its content is visible when part of the active window is overwritten by a soft keyboard.
It must be set to a value in the list below, or a "state ..." value plus a combination of "adjust ..." values. Set multiple values in either group-multiple "state ..." values, such as &mdash, have undefined results. Each value is separated by | For example:
The value set in this (except "stateunspecified" and "adjustunspecified") overrides the value set in the topic
Value |
Describe |
"Stateunspecified" |
The state of the soft keyboard (whether it is hidden or visible) is not specified. The system will select an appropriate state or a theme-dependent setting. This is the default setting for the software disk behavior. |
"Stateunchanged" |
The soft keyboard is persisted regardless of its last state, whether visible or hidden, when the main window appears in front. |
"Statehidden" |
When the user chooses the activity, the soft keyboard is hidden-that is, when the user determines that the activity is navigated to, instead of returning to it due to leaving another activity. |
"Statealwayshidden" |
The soft keyboard is always hidden when the activity main window gets focus. |
"Statevisible" |
The soft keyboard is visible when that is normal (when the user navigates to the Activity main window). |
"Statealwaysvisible" |
When the user chooses this activity, the soft keyboard is visible-that is, when the user determines that the activity is navigated to, rather than returning to it due to leaving another activity. |
"Adjustunspecified" |
It is not specified whether the Activity main window is resized to allow space on the soft keyboard, or whether the contents of the window are visible on the screen where the current focus is. The system will automatically select one of these modes primarily depending on whether the contents of the window have any layout view that can scroll their content. If there is such a view, the window will be resized so that the contents of the scrolling window can be visible in a smaller area. This is the default behavior setting for the main window. |
"Adjustresize" |
The Activity main window is always resized on the screen to allow space for the soft keyboard |
"Adjustpan" |
The Activity main window does not adjust the size of the screen to allow space for the soft keyboard. Instead, the contents of the current window are automatically moved so that the current focus is never covered by the keyboard and the user can always see the part of the input. This is usually not expected than resizing, because the user may turn off the soft keyboard in order to get an interactive operation with the covered content. |
To turn off the soft keyboard:
Inputmethodmanager m = (Inputmethodmanager) mcontext.getsystemservice (Context.input_method_service);
M. Hidesoftinputfromwindow (Mcontentet.getwindowtoken (), 0);
Transferred from: http://blog.sina.com.cn/s/blog_6271df6f0101dsax.html
Android Soft Keyboard Popup does not affect the layout of the method