JustTextView icon indicating copy to clipboard operation
JustTextView copied to clipboard

重写textview,实现较高性能的两端对齐textview

Results 4 JustTextView issues
Sort by recently updated
recently updated
newest added

![demo](https://user-images.githubusercontent.com/48906810/81160946-5b34cf80-8fbd-11ea-8c02-9727ba604c5c.jpg)

关于合字的解释 : https://zh.wikipedia.org/wiki/%E5%90%88%E5%AD%97 在Android系统中,默认的字体Roboto会有合字行为,比如fi会显示成: ![image](https://user-images.githubusercontent.com/10345166/83529903-8f989e80-a51d-11ea-8d43-382d4f2f40c7.png) 但是JustTextView在换行的时候,字符会出现偏移: ![image](https://user-images.githubusercontent.com/10345166/83530047-c8d10e80-a51d-11ea-875d-d5721b77f02f.png) 目前只发现在换行的时候会立即出现该bug

```kotlin val colorSpan = BackgroundColorSpan(Color.parseColor("#aa5f0c")) ss.setSpan(colorSpan, 101, 105, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) ss.setSpan(object : ClickableSpan() { override fun onClick(widget: View) { Toast.makeText(widget.context, "123", Toast.LENGTH_LONG).show() } }, 101, 105, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE) text.text = ss text.textSize...