SpacingTextView icon indicating copy to clipboard operation
SpacingTextView copied to clipboard

SpacingTextView 字距为任何字符串的TextView,设置文本间距

Results 3 SpacingTextView issues
Sort by recently updated
recently updated
newest added

/** * 字距为任何字符串(技术上,一个简单的方法为CharSequence不使用)的TextView */ private void applyLetterSpacing() { if (this == null || this.originalText == null) return; StringBuilder builder = new StringBuilder(); for(int i = 0; i < originalText.length(); i++)...

when i try to use this textview,i found that if your text includes symbol such as "your name :" ,i want to achive this result: "your name:" ,but this textview...