我想横向 LinearLayout
这就像 屏幕 和它一样高 孩子,但诀窍是它的孩子每个都有动态宽度,我不希望它们离开屏幕(剪掉)。我希望它们在新行中流动/中断,以便它们都可见。
尽管与Android完全无关,但它应该与内联方式类似 <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
比屏幕宽,额外的部分离开屏幕/看不见。