Answers for "check build version for html text in android"

0

set html text android java

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    textView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>", Html.FROM_HTML_MODE_COMPACT));
} else { 
    textView.setText(Html.fromHtml("<h2>Title</h2><br><p>Description here</p>"));
}
Posted by: Guest on April-12-2020
0

check build version for html text in android

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
        holder.tvName.setText(Html.fromHtml(list.get(position).name, Html.FROM_HTML_MODE_COMPACT));
 } else {
        holder.tvName.setText(Html.fromHtml(list.get(position).name));
 }
Posted by: Guest on November-24-2020

Code answers related to "check build version for html text in android"

Browse Popular Code Answers by Language