Android - 以与分辨率无关的方式布局具有固定顶部和底部元素的屏幕?
这样的布局
- 我有一个像Button
- MapView
- Button
,我希望按钮具有固定大小和大小。分别固定在屏幕的顶部和底部。我希望地图视图位于中间&填满空间。
实现这一目标的最佳方法是什么?
谢谢
I have a layout like this
- Button
- MapView
- Button
I want the buttons to be a fixed size & anchored to the top and bottom of the screen respectively. I want the mapview to be in the middle & fill up the space.
What's the best way to achieve this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用垂直方向的 LinearLayout 并将 Mapview 的权重设置为 1
Use LinearLayout with vertical orientation and set Mapview's weight as 1
像这样的事情应该可以解决问题:
Something like this should do the trick: