textview cutting off a letter in android
ended up with a hacky solution which is adding a white space after the last italicized character
I fixed it with setting the width of TextView to fill_parent instead of wrap_content...
Ok this is pretty strange but I changed from android:maxLines="1"
to android:singleLine="true"
and now the text is not getting cut off.