Alignment in Html.fromHtml()

前端 未结 7 847
眼角桃花
眼角桃花 2020-12-06 05:52

Is alignment working in HTML.fromHtml() in a TextView?

I tried

Test

and

7条回答
  •  天涯浪人
    2020-12-06 06:22

    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.

提交回复
热议问题