I have two spannable
object for same string and both have different styles. I need to merge all spannable
objects and display all styles into TextView
.
From one of returning from Html.fromHtml()
and second return StyleSpan(Bold).
I tried TextUtils.concate(htmlSpan, boldSpan)
but it displayed same string two times because it append spannable
, i want to display my all styles into single string.