键盘从纵向切换到横向,键盘关闭后视图保持向上移动

时间:2016-02-29 06:10:52

标签: android keyboard

键盘以纵向模式进入视图,然后旋转到横向模式。 键盘由

以编程方式关闭

InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE); inputMethodManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0);

关闭键盘后,

向下移动以纵向模式移动的视图。

如果键盘处于纵向模式关闭,这样可以正常工作。或以横向模式打开并以相同模式关闭。

我正在测试vanilla android并在摩托罗拉手机上运行。

1 个答案:

答案 0 :(得分:0)

更改清单中的活动配置如下: android:configChanges="orientation|screenSize" android:screenOrientation="portrait" android:windowSoftInputMode="adjustResize"