0
我試圖從我的SpannableString中刪除樣式,但不幸的是沒有工作,我的目標是刪除樣式,當點擊文本。如何從SpannableString中刪除範圍樣式
SpannableString content = new SpannableString("Test Text");
content.setSpan(new StyleSpan(Typeface.BOLD_ITALIC), 0, content.length(), 0);
...
的onClick操作:
content.removeSpan(new StyleSpan(Typeface.BOLD_ITALIC)) // not working
在此先感謝