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