gpt4 book ai didi

具有不同背景颜色的相对布局的android边距

转载 作者:太空狗 更新时间:2023-10-29 16:37:40 27 4
gpt4 key购买 nike

我有一个占据全屏且背景为白色的相对布局。 (已设置 fill_parent)我需要在左侧和右侧留出边距。边缘区域应该有不同的背景颜色。如何设置页边距区域的背景颜色?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/c1_cnxlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:background="@color/purewhite" >

最佳答案

在里面再添加一个RelativeLayout,设置两种不同的背景色

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/c1_cnxlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/color1" >

<RelativeLayout
android:id="@+id/c2_cnxlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:background="@color/color2" />

</RelativeLayout>

关于具有不同背景颜色的相对布局的android边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24771587/

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