gpt4 book ai didi

Android 在元素下方包含布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:53:12 24 4
gpt4 key购买 nike

我想创建一个如图所示的布局。没有包括他,所以代码很长。我想为每个 BOX 创建一个布局,并将其包含在主布局中,一个位于另一个下方。

enter image description here

问题是这种类型的布局的 XML 文件很长。所以我会使用包含布局并创建一个新布局,然后重复包含,例如:

我有一个RelativeLayout,我有一个line1的ImageView,下面我想在这个方法中设计盒子以减少代码:

<include layout = "box1"
layoutBelow = "linea1"
/>

盒子 2 也一样:

<include layout = "box2"
layoutBelow = "linea2"
/>

但是我包含的布局没有按照我想要的那样对齐。布局叠加在现有布局上。

最佳答案

我是这样解决的:

<!-- LINE SEPARATOR 1-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/logo"
android:id="@+id/linea1"
android:background="@drawable/linea"
/>

<!-- BOX1 -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/linea1"
>

<include
layout="@layout/box1"
android:layout_height="wrap_content"
android:layout_width="match_parent"

/>
</RelativeLayout>

<!-- LINE SEPARATOR 2-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/logo"
android:id="@+id/linea2"
android:background="@drawable/linea"
/>

<!-- BOX2 -->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/linea2"
>

<include
layout="@layout/box2"
android:layout_height="wrap_content"
android:layout_width="match_parent"

/>
</RelativeLayout>

结果是这张图片:

enter image description here

谢谢大家:)

关于Android 在元素下方包含布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37135865/

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