I’m using a textview to hold a string coming from a web service. String comes with a format like this. “sample text {{b}}bold text{{/b}} and so on”. I need to show the bold text bold in my textview. in a single operation I just can pass the string. Do I have a chance to use a string with color, font, etc properties?
Note: I don t have problems with parsing the text I just want to find a way to pass my parsed text to textview.
Thanks
I solved this problem by using SpannableString, for who who needs code, can change this class as they wish
}