gpt4 book ai didi

android - 有 View 换行内容,但如果空间可用则匹配父级

转载 作者:行者123 更新时间:2023-11-29 23:22:49 24 4
gpt4 key购买 nike

我在 LinearLayout 中有两个 View ,这两个 View 都应该 wrap_content 以便它们的最小尺寸足以显示它们的内容。 LinearLayout View 组应该 wrap_content 两个子组,这样它就足以显示两个 subview 的内容。

但在此之后,如果两个 subview 中的一个较大,则另一个 subview 应扩展以匹配父 View 以填充它可用的剩余空间。两个 subview 的内容是动态的,在运行时哪个更大是未知的。

这两个 subview 是一个 TextView 和一个 SpinnerSpinner 应填充 LinearLayout 宽度中的任何剩余空间。但是,如果我将 Spinner layout_width 更改为 match_parent 并且 TextView 不够大,则 Spinner 将截断其内容。

基本上我需要一种方法来选择 wrap_contentmatch_parent 之间的最大宽度。

这是布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/parentView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">

<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="-2dp"
android:layout_marginBottom="-2dp"
android:paddingStart="4dp"
android:paddingEnd="4dp"
android:textSize="12sp"
android:textColor="?android:textColorHint"
tools:text="Label" />

<Spinner
android:id="@+id/spinner"
style="@style/Widget.AppCompat.Spinner.Underlined"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<!-- or android:layout_width="match_parent"? need max of both... -->

</LinearLayout>

最佳答案

您可以使用一个技巧来通过 LinearLayout 完成此操作并且无需额外的 View :在父 LinearLayout 上使用 wrap_content 并为 match_parent em>两个的 child 。只要 LinearLayout 没有任何固定大小的子项,这种组合将使整个父项与其最宽的子项一样宽。

<LinearLayout
android:layout_width="wrap_content"
...>

<TextView
android:layout_width="match_parent"
.../>

<Spinner
android:layout_width="match_parent"
.../>

</LinearLayout>

enter image description here

enter image description here

(我已经为 LinearLayout 添加了背景颜色,以便更容易看到它是如何调整自身大小的。)

关于android - 有 View 换行内容,但如果空间可用则匹配父级,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53978781/

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