gpt4 book ai didi

安卓布局 : position element below lowest view

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:49:51 25 4
gpt4 key购买 nike

我附上了一张图片以更好地说明我要做什么。

我有两个 LinearLayout 并排放置。两者都可以使用 wrap_content 垂直扩展。我想将另一个容器 (Horizo​​ntalScrollView) 放置在高度较高的容器下方。它目前设置在最右边的列下方,因为它通常更高,但在某些情况下,ScrollView 会覆盖最左边列中的内容。有没有办法在 .xml 文件中设置它,或者我是否需要求助于在我的 onCreate 方法中设置它?

Example screen

最佳答案

您可以将两个 LinearLayouts 包装在另一个 Linear 或 Relative 布局中,类似的东西(只需根据您的需要更改原始 3 个布局的属性):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/parent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<RelativeLayout
android:id="@+id/frame"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
>
<LinearLayout
android:id="@+id/linearLeft"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/linearRight"
>
</LinearLayout>
<LinearLayout
android:id="@+id/linearRight"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
>
</LinearLayout>
</RelativeLayout>
<ScrollView
android:id="@+id/scroll"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/frame"
android:layout_alignParentLeft="true"
>
</ScrollView>
</RelativeLayout>

关于安卓布局 : position element below lowest view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4733025/

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