gpt4 book ai didi

Android:为什么相同权重的按钮具有不同的宽度?

转载 作者:行者123 更新时间:2023-11-29 15:25:19 24 4
gpt4 key购买 nike

考虑以下代码和输出:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TableRow>

<Button
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="ABCDE" />

<Button
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="A" />

<Button
android:id="@+id/button3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="ABC" />
</TableRow>

</TableLayout>

enter image description here

按钮被赋予相同的 layout_weight,但具有不同的宽度。为什么它们不占用相同的宽度?我该怎么做才能使它们具有相同的宽度(不提供像素值)?

最佳答案

layout_width 更改为 0dip 将解决此问题。

有关其工作原因或使用原因的更多信息,请查看此 explanation .

很高兴它有所帮助。

关于Android:为什么相同权重的按钮具有不同的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13976953/

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