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
Why would you use SpannableStringBuilder when you can use SpannableBuilder?? (https://gist.github.com/qtyq/90f9b4894069a8b3676c)
SpannableString ss = SpannableBuilder.init("First Part Not Bold BOLD rest not bold") .makeBold("BOLD") .create()