Documentation for this section has not yet been entered.
Get method documentation [Android Documentation]
Return the text the TextView is displaying. If setText() was called with
an argument of BufferType.SPANNABLE or BufferType.EDITABLE, you can cast
the return value from this method to Spannable or Editable, respectively.
Note: The content of the return value should not be modified. If you want
a modifiable one, you should make your own copy first.
Set method documentation [Android Documentation]
Sets the string value of the TextView. TextView does not accept
HTML-like formatting, which you can do with text strings in XML resource files.
To style your strings, attach android.text.style.* objects to a
Android.Text.SpannableString, or see the
Available Resource Types documentation for an example of setting
formatted text in the XML resource file.