在Android的官方文档当中,对windowSoftInputMode的说明如下:

android:windowSoftInputMode

How the main window of the activity interacts with the window containing the on-screen soft keyboard. The setting for this attribute affects two things:
  • The state of the soft keyboard — whether it is hidden or visible — when the activity becomes the focus of user attention.
  • The adjustment made to the activity's main window — whether it is resized smaller to make room for the soft keyboard or whether its contents pan to make the current focus visible when part of the window is covered by the soft keyboard.

The setting must be one of the values listed in the following table, or a combination of one "state..." value plus one "adjust..." value. Setting multiple values in either group — multiple "state..." values, for example — has undefined results. Individual values are separated by a vertical bar (|). For example:

<activity android:windowSoftInputMode="stateVisible|adjustResize" . . . >

Values set here (other than "stateUnspecified" and "adjustUnspecified") override values set in the theme.

Value Description
"stateUnspecified" The state of the soft keyboard (whether it is hidden or visible) is not specified. The system will choose an appropriate state or rely on the setting in the theme.

This is the default setting for the behavior of the soft keyboard.

"stateUnchanged" The soft keyboard is kept in whatever state it was last in, whether visible or hidden, when the activity comes to the fore.
"stateHidden" The soft keyboard is hidden when the user chooses the activity — that is, when the user affirmatively navigates forward to the activity, rather than backs into it because of leaving another activity.
"stateAlwaysHidden" The soft keyboard is always hidden when the activity's main window has input focus.
"stateVisible" The soft keyboard is visible when that's normally appropriate (when the user is navigating forward to the activity's main window).
"stateAlwaysVisible" The soft keyboard is made visible when the user chooses the activity — that is, when the user affirmatively navigates forward to the activity, rather than backs into it because of leaving another activity.
"adjustUnspecified" It is unspecified whether the activity's main window resizes to make room for the soft keyboard, or whether the contents of the window pan to make the currentfocus visible on-screen. The system will automatically select one of these modes depending on whether the content of the window has any layout views that can scroll their contents. If there is such a view, the window will be resized, on the assumption that scrolling can make all of the window's contents visible within a smaller area.

This is the default setting for the behavior of the main window.

"adjustResize" The activity's main window is always resized to make room for the soft keyboard on screen.
"adjustPan" The activity's main window is not resized to make room for the soft keyboard. Rather, the contents of the window are automatically panned so that the current focus is never obscured by the keyboard and users can always see what they are typing. This is generally less desirable than resizing, because the user may need to close the soft keyboard to get at and interact with obscured parts of the window.

This attribute was introduced in API Level 3.

introduced in:
API Level 1 for all attributes except for noHistoryand windowSoftInputMode, which were added in API Level 3.
see also:
<application>

<activity-alias>


Activity的主窗口如何与在屏幕之上的键键盘进行交互呢?这一属性的设置(android:windowSoftInputMode)会影响到一下两点:

  • 键盘的状态。当Acitivity出现在用户面前时,键盘是隐藏还是可见。
  • 活动的主窗口调整——是否减少活动主窗口大小以便腾出空间放软键盘或是否当活动窗口的部分被软键盘覆盖时它的内容的当前焦点是可见的。
设置的内容必须是以下表格当中值的一个,或者是一个以“state+adjust……”组合而成的值。在一组设置设置当中可以设置多个值。使用|用于划分不同的值。例如
<activity android:windowSoftInputMode="stateVisible|adjustResize" . . . >
除了(stateUnspecified和adjustUnspecified)以下值复写了在样式文件当中设置的值
描述
"stateUnspecified" 软键盘的状态(隐藏还是可见)没有确定,系统会根据主题当中的设置选取一个合适的状态。这是软键盘的模式设置。
"stateUnchanged" 当Activity出现在最前面时,软键盘的状态不变,不管是可见还是隐藏。
"stateHidden" 当用户选择Activity时,软键盘会隐藏。也就是,当用户确定导航到该Activity时,而不是返回到它由于离开另一个Activity。
"stateAlwaysHidden" 软键盘总是被隐藏的,当该Activity主窗口获取焦点时。
"stateVisible" 软键盘是可见的,当那个是正常合适的时(当用户导航到Activity主窗口时)。
"stateAlwaysVisible" 当用户选择这个Activity时,软键盘是可见的——也就是,也就是,当用户确定导航到该Activity时,而不是返回到它由于离开另一个Activity。
"adjustUnspecified" 它不被指定是否该Activity主窗口调整大小以便留出软键盘的空间,或是否窗口上的内容得到屏幕上当前的焦点是可见的。系统将自动选择这些模式中一种主要依赖于是否窗口的内容有任何布局视图能够滚动他们的内容。如果有这样的一个视图,这个窗口将调整大小,这样的假设可以使滚动窗口的内容在一个较小的区域中可见的。这个是主窗口默认的行为设置。

"adjustResize" 该Activity主窗口总是被调整屏幕的大小以便留出软键盘的空间。
"adjustPan" 该Activity主窗口并不调整屏幕的大小以便留出软键盘的空间。相反,当前窗口的内容将自动移动以便当前焦点从不被键盘覆盖和用户能总是看到输入内容的部分。这个通常是不期望比调整大小,因为用户可能关闭软键盘以便获得与被覆盖内容的交互操作。





更多相关文章

  1. android圆形进度条ProgressBar颜色设置
  2. Eclipse下android相关设置
  3. android设置view透明度的效果
  4. 【Android】Scrollview 相关问题汇总
  5. Android的所有权限说明
  6. Android(安卓)SDK下载和更新失败的解决方法
  7. ImageVIew 设置图片大小
  8. android 键盘 搜索键
  9. Android键盘属性

随机推荐

  1. Android(安卓)GPS获得经纬度并得到该坐标
  2. Android(安卓)max17044平台驱动注册
  3. Android(安卓)Studio开发过程中各种问题
  4. Android(安卓)如何处理Search下的suggest
  5. android解决Unknown host 'jcenter.bintr
  6. 《Android系统学习》第十章:Android消息处
  7. Android的简单组件总结
  8. Android(安卓)okHttp上传单张或多张照片
  9. Android全屏设置及取消全屏设置
  10. android如何往SDCard中存取图片