Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在屏幕底部有一个按钮栏(它的父级是整个屏幕的RelativeLayout)(在android:layout_alignParentBottom =“true”的帮助下)
问题是,当显示键盘时,该条出现在键盘正上方,从而减小了显示器其余部分的尺寸。
即使显示键盘,您对如何强制按钮栏保持在屏幕底部有任何想法吗?
在AndroidManifest.xml中,设置android:windowSoftInputMode="adjustPan"为您的活动。有关更多详细信息,请参阅文档。
AndroidManifest.xml
android:windowSoftInputMode="adjustPan"