如果想要页面内容被压缩(需配合可滚动布局如 ScrollView),整体都展示在键盘上方 用如下:
<activity
android:name=".xx.xxx
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize" />
如果只是页面位置移动,输入框不被键盘遮挡, 用如下:
<activity
android:name=".xx.xxx
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustPan|stateHidden" />
adjustPan|stateHidden 表示:软键盘默认隐藏,且当输入框获得焦点时,整个 Activity 内容会向上平移(不缩放)以避免遮挡当前输入框