whilu / AndroidTagView

A TagView library for Android. Customize your own & Drag effect.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

container_max_lines的bug

brandlee opened this issue · comments

在TagContainerLayout中设置最大行数的地方:
return mMaxLines <= 0 ? lines : mMaxLines;
建议修改为:
return mMaxLines > lines ? lines : mMaxLines;
不然容器的高度总是为最高的高度