Is there any control in android which we can use as a rich text box which can handle formatting of characters such as bold, italic etc. and use fonts and color ?
If
Sample SpannableString and TextView implementation:
SpannableString
TextView
TextView tv = new TextView; String text = "String String String String body"; SpannableString spannableStr = new SpannableString(text); spannableStr.setSpan(new StyleSpan(Typeface.BOLD), 0 , 10, 0); tv.setText(spannableStr);