Why does TextView.getText()
return a CharSequence
instead of a String
?
(String is the implementation of the CharSequence)
Because it might contain a Spannable
object. From the doc:
If
setText()
was called with an argument ofBufferType.SPANNABLE
orBufferType.EDITABLE
, you can cast the return value from this method toSpannable
orEditable
, respectively.