显示软键盘时隐藏视图

时间:2012-12-06 06:42:54

标签: android android-view android-softkeyboard

下面的图片会更好地告诉你那些我真正想要的东西()..

在显示softKeyBoard屏幕之前是..

enter image description here

显示softKeyboard后,它应该看起来像这样..

enter image description here

我的问题是,当软键盘显示时,它隐藏了我不想要的底部视图 隐藏但应该像上面的图像一样显示

1 个答案:

答案 0 :(得分:4)

在清单中将windowSoftInputMode指定为“adjustResize”以用于相应的活动 例如:

<activity android:label="@string/app_name" android:name=".LoginActivity" android:windowSoftInputMode="adjustResize">