键盘以纵向模式进入视图,然后旋转到横向模式。 键盘由
以编程方式关闭 InputMethodManager inputMethodManager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0);
向下移动以纵向模式移动的视图。
如果键盘处于纵向模式关闭,这样可以正常工作。或以横向模式打开并以相同模式关闭。
我正在测试vanilla android并在摩托罗拉手机上运行。
答案 0 :(得分:0)
更改清单中的活动配置如下:
android:configChanges="orientation|screenSize"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustResize"