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
This worked for me along with the Small tag.
android:paddingBottom="1dp"
yourTextView.setText(Html.fromHtml("" +" Hey< sub >< small >2< /small > < /sub >"));
Note Please note , step 1 is important , My text was still cutting down in some case,using paddingBottom resolved it. Don't forget to remove the spaces in sub and small tags that are present in my answer :)