如何在布局中上下移动页脚
我正在做一个 Android 应用程序,其中有两个按钮应该放置在底部,当键盘弹出时,它们需要移动到键盘布局上方,然后再次返回到页面底部。如何?
I am doing an android app where I have two buttons which should be placed in bottom and when keyboard pops up they need to move above the layout of keyboard and again go back to bottom of page. How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 AndroidManifest 中
activity
元素的android:windowSoftInputMode
属性。在我的应用程序中,我使用以下代码:请注意
android:windowSoftInputMode="adjustResize"
行。在这里阅读更多内容:http://developer.android.com/guide /topics/manifest/activity-element.html#wsoftHave a look at
android:windowSoftInputMode
attribute of theactivity
element in your AndroidManifest. In my application I use this code:Note the
android:windowSoftInputMode="adjustResize"
line. Read more here: http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft如果您总是想显示在屏幕顶部,那么您可能需要考虑使用RelativeLayout。
If you always want to display on top of the screen then you may want to consider using RelativeLayout.