Android - 以与分辨率无关的方式布局具有固定顶部和底部元素的屏幕?

发布于 2024-10-28 23:33:38 字数 175 浏览 4 评论 0原文

这样的布局

  • 我有一个像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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

心房敞 2024-11-04 23:33:38

使用垂直方向的 LinearLayout 并将 Mapview 的权重设置为 1

Use LinearLayout with vertical orientation and set Mapview's weight as 1

你げ笑在眉眼 2024-11-04 23:33:38

像这样的事情应该可以解决问题:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

<Button
    android:id="@+id/button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"/>

<WhateveerMapLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/button"
    android:layout_above="@+id/button2"
    />

<Button
    android:id="@id/button2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    /> 


</RelativeLayout>

Something like this should do the trick:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

<Button
    android:id="@+id/button"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"/>

<WhateveerMapLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/button"
    android:layout_above="@+id/button2"
    />

<Button
    android:id="@id/button2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    /> 


</RelativeLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文