Why the text is not bold and italic as I wrote? Here is my values string xml code:
<string name="fragrance"> <b>FirstItem</b> \n<i>Description</i> </string>
You have to set it by this way:
Spanned htmlString = Html.fromHtml(getString(R.string.fragrance));
textView.setText(htmlString);