Is alignment working in HTML.fromHtml() in a TextView?
I tried
Test
and
For API 24 and below, add a gravity attribute to the TextView layout element
android:gravity="center_horizontal"
For API 24 and above, can use a style within the HTML.
String centeredHtml = "" + myFormattedHtml + "";
textView.setText(Html.fromHtml(centeredHtml));
But gravity is also supported up to at least API 26.