日常开发中,经常有 TextView 最多显示 3 行,超出了就显示“…查看更多”,在网上找到一个十分方便使用的类,原理也很简单,摘录一下,以后开发类似需求再也不愁了~
1 | private const val logTag = "TextViewLayout" |
使用:1
2
3
4
5
6
7
8TextViewSuffixWrapper(topicView.descTv).apply {
targetLineCount = 3
suffix = "...查看全部"
suffix?.apply {
suffixColor("...".length, length, R.color.main_title_text_color_checked)
}
collapse(false)
}
还可以添加点击事件,点击后撑开,着实方便~