I did it using binding adapter
@BindingAdapter("app:text")@JvmStaticfun htmlText(view: TextView, text: String?) { text?.let { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { view.text = Html.fromHtml(it.trim(), Html.FROM_HTML_MODE_COMPACT) } else { view.text = Html.fromHtml(it.trim()) } }}
like this.