AndroidTagView icon indicating copy to clipboard operation
AndroidTagView copied to clipboard

container_max_lines的bug

Open brandlee opened this issue 8 years ago • 0 comments

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

brandlee avatar Mar 14 '18 08:03 brandlee