Android TextView's subscript being clipped off

前端 未结 9 2388
粉色の甜心
粉色の甜心 2020-12-28 14:41

The Android TextView clips off my text subscripts (see image below) even when I use android:layout_height=\"wrap_content\" for the TextView. Is there a fix/work

9条回答
  •  执念已碎
    2020-12-28 15:07

    For subscript a slight variation to the above suggestion is needed, two small tags:

        textView.setText(Html.fromHtml(
            "HCO3));
    

提交回复
热议问题