如果当前行中没有空格,则使用换行来包装其子节点的ViewGroup

时间:2016-05-10 19:49:10

标签: android android-viewgroup

我在这里尝试了旧解决方案: Line-breaking widget layout for Android

是否有新的正确方法来实现此功能?

1 个答案:

答案 0 :(得分:2)

Google的新FlexboxLayout库可以执行此操作。

<com.google.android.flexbox.FlexboxLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:flexWrap="wrap"
    app:alignItems="stretch"
    app:alignContent="stretch" >

    <TextView
        android:layout_width="120dp"
        android:layout_height="80dp" />

    <TextView
        android:layout_width="80dp"
        android:layout_height="80dp" />

    <TextView
        android:layout_width="160dp"
        android:layout_height="80dp" />

</com.google.android.flexbox.FlexboxLayout>