Hi,
I want to set Label text to spannable text, but the spannable text method is used for TextView so how can we set spannable text to Label?
A Label component wraps an Android TextView, so if you have a reference to a Label you can call getView()
on it to get the underlying view and then cast that to TextView
.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.