是否可以使用不同宽度的子项创建网格视图/列表视图?

时间:2016-05-02 13:27:42

标签: android

我想开发this类型的布局。我怎样才能做到这一点?

2 个答案:

答案 0 :(得分:1)

我是使用FlowLayout做到的。您可以使用任何视图。我已经使用了textView,因为我只需要它。您可能必须创建自定义视图并以编程方式包含它。

<com.wefika.flowlayout.FlowLayout
            android:id="@+id/rquestion_fl"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <TextView
                android:tag="tagView1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="3dp"/>

            <TextView
                android:tag="tagView2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="3dp"/>

 <!-- You can programmatically add View -->

答案 1 :(得分:0)

您可以使用交错网格

来实现此目的

检查以下链接

http://inducesmile.com/android/android-staggeredgridlayoutmanager-example-tutorial/