First replace "\n" with its Html equavalent "<br>"
then call Html.fromHtml() on the string. Follow below steps:
String text= model.getMessageBody().toString().replace("\n", "<br>")
textView.setText(Html.fromHtml(Html.fromHtml(text).toString()))
This works perfectly.