0

我在这里尝试过旧的解决方案: Android 的换行小部件布局

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

4

1 回答 1

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>
于 2016-05-10T19:49:09.553 回答