I need to create a String placed in a TextView that will display a string like this:
First Part Not Bold BOLD rest not bold >
First Part Not Bold BOLD rest not bold
Use HTML code in TextView using the Html class:
Spanned styledText = Html.fromHtml("First Part Not Bold BOLD rest not bold"); textView.setText(styledText);