gpt4 book ai didi

Android Layout_weight

转载 作者:太空宇宙 更新时间:2023-11-03 11:38:10 25 4
gpt4 key购买 nike

也许我误解了 layout_weight 参数,但我不明白为什么这样的东西不起作用......

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" android:weightSum="1">

<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="TextView" android:layout_weight="0.3" android:background="@color/apr_blue"/>

<TextView
android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:text="TextView"
android:background="@color/apr_brightyellow"/>

<TextView
android:id="@+id/textView3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="TextView"
android:background="@color/apr_yellow"/>

</LinearLayout>

我在 LinearLayout 中有三个或更多 TextView 。我想将它们放在具有百分比宽度的列中。这就是它产生的结果:

layout_weight 设置为 0.3/0.2/0.5

Android layout_weight incorrectly

然后我稍微改变了 layout_weight 参数如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" android:weightSum="1">

<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="TextView" android:layout_weight="0.3" android:background="@color/apr_blue"/>

<TextView
android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.3"
android:text="TextView"
android:background="@color/apr_brightyellow"/>

<TextView
android:id="@+id/textView3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.4"
android:text="TextView"
android:background="@color/apr_yellow"/>

</LinearLayout>

现在我得到了我想要的:

layout_weight 设置为 0.3/0.2/0.5

Android layout_weight correctly

这是一个错误还是我真的误解了 layout_weight 的全部内容?

最佳答案

当您使用 android:layout_weight 时,您应该设置 android:layout_width="0dp"(以防垂直方向 - android:layout_height="0dp")。

关于Android Layout_weight,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10547499/

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