Android 自动换行布局 FlowLayout

自动换行控件FlowLayout 

github项目地址:

https://github.com/ApmeM/android-flowlayout


简单易用,直接在xml设置


    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
	
	


如果你需要换行的控件不是固定的,那么就在java代码里使用 FlowLayout.addView(View v)  动态添加空件



你可能感兴趣的:(Android 自动换行布局 FlowLayout)