gpt4 book ai didi

android - 在 RelativeLayout 中分配额外的空间

转载 作者:行者123 更新时间:2023-11-30 01:50:26 25 4
gpt4 key购买 nike

我正在尝试构建一个 RelativeLayout,它在其子项之间分配多余的空间,如下所示:

RelativeLayout example

我已经弄清楚如何将红色小部件置于蓝色小部件的中心,但我还想做的是在蓝色和橄榄色小部件上方、下方和之间均匀分布任何多余的垂直空间。目前,一切都集中在顶部。

我的 XML 大致如下所示:

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

<ImageButton android:id="@+id/blue_button"
android:src="@drawable/blue_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:layout_alignParentTop="true"
/>
<ImageView
android:id="@+id/red_box"
android:src="@drawable/red_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/blue_button"
android:layout_marginLeft="10dp"
android:layout_alignTop="@id/blue_button"
android:layout_alignBottom="@id/blue_button"
/>

<ImageButton
android:id="@+id/green_button"
android:src="@drawable/green_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/blue_button"
android:layout_weight="1"
/>

</RelativeLayout>

最佳答案

首先,您将 layout_weightRelativeLayout 父级一起使用。它没用,因为 layout_weight 仅适用于 LinearLayout 父级。

实际上我不明白你的问题(想要布局的图片会很好)但我想这对你有用:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
>

<RelativeLayout
android:id="@+id/blueAndRedWrapperLay"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
>

<ImageButton android:id="@+id/blue_button"
android:src="#00CCFF"
android:layout_width="300dp"
android:layout_height="200dp"
android:layout_weight="1"
android:layout_centerInParent="true" />

<ImageView
android:id="@+id/red_box"
android:src="#ff0000"
android:layout_width="100dp"
android:layout_height="70dp"
android:layout_centerInParent="true"
/>

</RelativeLayout>

<RelativeLayout
android:id="@+id/greenWrapperLay"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
>

<ImageButton
android:id="@+id/green_button"
android:src="#669900"
android:layout_width="300dp"
android:layout_height="200dp"
android:layout_centerInParent="true"
/>

</RelativeLayout>

</LinearLayout>

关于android - 在 RelativeLayout 中分配额外的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33136029/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com