- A
Stringis immutable (ie, the text can’t change). It also doesn’t have any spans associated with it. (Spans are ranges over the text that include styling information like color, highlighting, italics, links, etc.) So you can use aStringwhen your text doesn’t need to be changed and doesn’t need any styling. - A
StringBuilderhas mutable text, so you can modify it without creating a new object. However, it doesn’t have any span information. It is just plain text. So use aStringBuilderwhen you need to change the text, but you don’t care about styling it. - A
SpannedStringhas immutable text (like aString) and immutable span information. It is a concrete implementation of the requirements defined by theSpannedinterface. Use aSpannedStringwhen your text has style but you don’t need to change either the text or the style after it is created.
Note: There is no such thing as a SpannedStringBuilder because if the text changed then the span information would also very likely have to change.
- A
SpannableStringhas immutable text, but its span information is mutable. It is a concrete implementation of the requirements defined by theSpannableinterface. Use aSpannableStringwhen your text doesn’t need to be changed but the styling does. - A
SpannableStringBuilderhas both mutable text and span information. It is a concrete implementation of the requirements defined by theSpannableandEditableinterfaces (among others). Use aSpannableStringBuilderwhen you will need to update the text and its style. - A
CharSequenceis an interface and not a concrete class. That means it just defines a list of rules to follow for any class that implements it. And all of the classes mentioned above implement it. So you can use aCharSequencewhen you want to generalize the type of object that you have for maximum flexibility. You can always downcast it to aStringorSpannableStringBuilderor whatever later if you need to.