gpt4 book ai didi

Android 布局重量不起作用

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

我得到了这个布局:

<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="6sp"
android:layout_marginLeft="16sp"
android:layout_marginRight="6sp"
android:layout_marginTop="6sp" >

<TextView android:id="@+android:id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItem"
android:inputType="none" />

<TextView android:id="@+android:id/summary"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_below="@android:id/title"
android:maxLines="2"
android:layout_width="wrap_content" />

</RelativeLayout>

<!-- Preference should place its actual preference widget here. -->
<!-- android:id="@android:id/widget_frame" -->

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginBottom="6sp"
android:layout_marginLeft="6sp"
android:layout_marginRight="6sp"
android:layout_marginTop="10sp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:weightSum="1" >

<SeekBar
android:id="@+id/change_seekbar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.8"
android:paddingLeft="20dip"
android:paddingRight="20dip" >

</SeekBar>

<TextView
android:id="@+id/Text_Box_seek"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dip"
android:textSize="16dip" >
</TextView>
</LinearLayout>

我希望搜索栏占用内部线性布局中 80% 的宽度,但搜索栏仍然非常小。为什么它不占用其余空间?

最佳答案

LinearLayout 的布局宽度更改为 match_parent 或为其设置特定值。

解释如果您使用 LinearLayout width = wrap_content,则 LinearLayout 的宽度将取决于 child 。
而且您还为子项设置了权重,因此子项的宽度将取决于父项。
=>( parent 的宽度取决于 child , child 的宽度取决于 parent )那么我认为 View 将不知道该怎么做

关于Android 布局重量不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42621148/

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