如果水平没有房间空间,我找不到在父布局中包装儿童的好答案。
例如我有:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:text="Button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
它给出了这样的观点:
实际上最后一个按钮应该像下一行一样:
有没有办法解决这个问题并使内容包装?谢谢你的建议。