TagEditText icon indicating copy to clipboard operation
TagEditText copied to clipboard

Text control for displaying tags.

Results 1 TagEditText issues
Sort by recently updated
recently updated
newest added

``` /** * 删除文本[删除最后匹配] * * @param text */ public void removeText(String text) { if (TextUtils.isEmpty(text)) return; SpannableStringBuilder builder = new SpannableStringBuilder(getText()); int pos = text.toString().indexOf(text); if (pos > -1)...