gpt4 book ai didi

android - 对齐 Liniar 布局子项

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

我有一个垂直的 LiniarLayout,其内容宽度可以换行。我想让所有 child 的宽度相同(最大 child 的宽度)而不是使用固定尺寸。

最佳答案

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Short"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Short"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Some long text to match layout"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="short"/>
</LinearLayout>

关于android - 对齐 Liniar 布局子项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24887754/

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