gpt4 book ai didi

android - 两种颜色背景Android

转载 作者:搜寻专家 更新时间:2023-11-01 07:54:35 25 4
gpt4 key购买 nike

我正在编写一个 Android Activity ,它的上侧应该有一种颜色的背景,底部应该有另一种颜色的背景。

使用的相对布局被填充。

我通常做的是使用非padded relative layout,在upper和bottom relative layout中划分,这些u/l在其他padded relative layout中划分。

这让我确信所有的 Activity 区域都有它应该有的背景颜色。填充区域确保小部件围绕 Activity 的中心。

但现在我有一个已经编程的 Activity ,上面的小部件和底部的小部件相互关联,所以我不能轻易划分相对布局。

有什么建议吗?

最佳答案

查看您的 Activity 的此布局。只有一个 RelativeLayout 有两个背景。一个设置为布局本身,另一个设置为位于顶部 View 下方的空 View。唯一的缺点是您必须从 RelativeLayout 中删除 padding 并将其替换为设置为您的 View 的 margin。我想这没什么大不了的。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#59C2F2">

<!-- This is the last TextView of top part, below it the bg will be different -->
<TextView
android:id="@+id/top_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:text="This represents top elements"/>

<!-- This View must be placed before any elements from the bottom part -->
<View
android:id="@+id/bottom_background"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/top_text"
android:layout_alignParentBottom="true"
android:background="#004892" />

<!-- Now you can place your bottom elements and align them with the to ones -->
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@id/bottom_background"
android:layout_alignLeft="@+id/top_text"
android:layout_marginTop="16dp"
android:textColor="#fff"
android:text="This is the bottom part"/>

</RelativeLayout>

关于android - 两种颜色背景Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29890557/

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