ExpandableTextViewExample icon indicating copy to clipboard operation
ExpandableTextViewExample copied to clipboard

最轻量的可展开和收缩内容的TextView,可用于listview等列表或普通布局情况

Results 9 ExpandableTextViewExample issues
Sort by recently updated
recently updated
newest added

展开再收起后省略号没了?

建议暴露content textview 的对外接口,这样方便设置textview的一些特殊属性,如行间距这些

目前不能代码设置内容文字的颜色

用SpannableString显示文本信息的话折叠展开的是上半部分而不是下半部分。请问作者能修复这个问题吗,挺急的,谢谢

库中很多代码和 [ExpandableTextView](https://github.com/Manabu-GT/ExpandableTextView) 基本如出一辙。

看了下源码发现 ` mTvExpandCollapse.setText(mCollapsed ? getResources().getString(R.string.expand) : getResources().getString(R.string.collapse)); ` 一直是取R.string里的值,改成 `mTvExpandCollapse.setText(mCollapsed ? textExpand : textCollapse);` 就好了

升级后,打开能正常展示,点击可以正常展开,再点击收起,文字全部消失了(android 6.0以后均如此,5.11以下正常使用,想跟楼主探讨一下原因?) @jaydenxiao2016 #

运行demo,把列表中的全部TextView都展开一遍,来回滑动列表,发现这个状态已经开始异常,有个别item又变回了收缩状态,作者能否优化一下?