Answers for "android lineheight text xml"

2

android lineheight text xml

android:lineSpacingExtra="24dp"
Posted by: Guest on May-29-2020
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

Browse Popular Code Answers by Language