如何防止键盘改变 Ionic 中的内容布局?

How to prevent the keyboard altering the content layout in Ionic?

我有一个带有搜索框的列表,当用户点击搜索框时会出现键盘,但问题是它会将列表向上移动。

如何在不改变内容布局的情况下显示键盘?

后来我遇到了同样的问题,页面底部的按钮随键盘移动,然后我才发现这个问题:android keyboard moves tabs

答案相同,编辑 platforms/android 处的 AndroidManifest.xml 以更改 activity 属性:

<activity android:windowSoftInputMode="adjustPan"> </activity>

就是这样。