gpt4 book ai didi

android - 使用 LinearLayouts 将高度一分为三

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

我想在 RelativeLayout 中放置 3 个单独的 LinearLayout 控件,并在 3 个 LinearLayout 控件之间划分可用高度,以便它们所有高度均等。

我已经尝试过,weightSum,以及gravity,但是这些都没有像我错误地假设的那样起作用。我已阅读有关 layout_weight 的内容,但这在 LinearLayout 中不可用。

我可以为它们中的每一个指定一个静态高度,但我如何知道该应用程序可能运行的每台设备的可用空间?

这是我当前的代码:

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_image">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="top"
android:weightSum="1">

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:weightSum="1"></LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="bottom"
android:weightSum="1"></LinearLayout>

</RelativeLayout>

我仍在学习 Android 开发,所以任何帮助/建议将不胜感激。

最佳答案

下面的布局会有3个LinearLayout垂直均匀分布

      <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="3"
android:orientation="vertical"
android:background="@drawable/bg_image">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>

</LinearLayout>

关于android - 使用 LinearLayouts 将高度一分为三,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37240934/

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