我想开发this类型的布局。我怎样才能做到这一点?
答案 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/