I\'m attempting to construct rich-text where the first part says \"Looking for: \" and is bolded, but the rest is NOT bolded. This is my code:
SpannableStringBui
If you just need to Bold the part of text, then just use html tags.
String htmlString="<b>Looking for: Bold</b> and Normal"; tvLookingFor.setText(Html.fromHtml(htmlString), TextView.BufferType.SPANNABLE);