我想要一个与屏幕LinearLayout
一样宽且与其子级一样高的水平线,但诀窍是它的子级每个都有动态宽度,我不希望它们离开屏幕(切掉)。我希望它们在新行中流动/中断,以便它们都可见。
尽管与 Android 完全无关,但它的工作方式应该类似于 inline<div>
在 HTML 中的工作方式。
这是我现在拥有的:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="If you would enter some digits in this field " />
<EditText
android:id="@+id/tvDistance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="enter some digits here"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" that would be great" />
</LinearLayout>
但是一旦孩子的孩子LinearLayout
比屏幕宽,额外的部分就会离开屏幕/不可见。