gpt4 book ai didi

android - 如何在包含 TextView 的android中更改整个线性布局的背景颜色

转载 作者:行者123 更新时间:2023-11-29 17:23:02 26 4
gpt4 key购买 nike

我有一个正在处理的项目,我有一个包含两个 TextView 的 LinearLayout。我已经使用 android:background = "@color/..."设置了 LinearLayout 的背景颜色,但是这只适用于 TextView 结束的地方。如果它在屏幕中间结束,那么颜色就停在那里,其余的向下显示白色。我不明白。我已经彻底搜索无济于事。请大家帮帮我。这是我的布局文件。

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gold">

<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gold"
android:paddingBottom="10dp"
android:paddingLeft="15dp"
android:paddingTop="10dp"
android:textSize="20sp" />

<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gold"
android:paddingLeft="15dp"
android:paddingRight="10dp"
android:textSize="15sp" />

</LinearLayout>

问候。

最佳答案

您的 LinearLayout 可能只使用 wrap_content。如果您希望全屏显示该颜色,您的 LinearLayout 必须扩展以使用全屏:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/my_color>

</LinearLayout>

如果您的 LinearLayout 不是布局中的根元素,则将背景设置为根元素,确保它的宽度和高度都具有 match_parent。

关于android - 如何在包含 TextView 的android中更改整个线性布局的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35803423/

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