2016-02-29 84 views
0

鍵盤以縱向模式進入視圖,然後旋轉到橫向模式。 鍵盤被編程通過鍵盤從縱向切換到橫向視圖在鍵盤關閉後保持向上移動

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

關閉鍵盤下移這是在縱向模式移位視圖後關閉。

如果在肖像模式下關閉鍵盤,這工作正常。或以橫向模式打開並在相同模式下關閉。

我正在測試香草android並在摩托羅拉手機上運行。在清單

回答

0

改變活動配置如下: android:configChanges="orientation|screenSize" android:screenOrientation="portrait" android:windowSoftInputMode="adjustResize"

相關問題