listview中要设置为 android:layout_width="match_parent" android:layout_height="wrap_content";才能显示出来啊
Opened this issue · 0 comments
chuanzhiben commented
TagCloudLayout设置为wrap_content,即
<com.fyales.tagcloud.library.TagCloudLayout
android:id="@+id/color_flow_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
listview只显示子控件所占的空间,一片空白,并不会显示内容;
TagCloudLayout设置为match_parent,即
<com.fyales.tagcloud.library.TagCloudLayout
android:id="@+id/color_flow_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" />
listview只显示TagCloudLayout一部分childView,且没有内容(文字什么的),只有背景;