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 anyone having any link or source related to the above information please share it with me.
SpannableString
class orHTML.fromHtml()
allows you to manipulate different styles in actual string. See the links below:http://developer.android.com/reference/android/text/SpannableString.html http://developer.android.com/reference/android/text/Html.html#toHtml(android.text.Spanned)
WebView is the closest that I can think of, but it is super duper heavy unless you want the entire screen to be a webview.
Sample SpannableString & TextView implementation: