AutoFlowLayout
AutoFlowLayout copied to clipboard
关于内容显示不完整的问题
查看源码发现,是因为摆放的时候重复累加了topmargin值 源码446行 // top += lineHeight + lp.topMargin + lp.bottomMargin; 改为 top += lineHeight; 看着是解决了,不知道有没有什么别的问题