Android:TextView height doesn't change after shrinking the font size

后端 未结 7 1226
长情又很酷
长情又很酷 2020-12-03 14:19

When I click on the button, the font size shrinks to 12. However, the result is :

\"enter

7条回答
  •  Happy的楠姐
    2020-12-03 14:58

    Finally, I found the reason/solution!!!

    This is a known bug for Android 3.1+

    Issue 17343

    Issue 22493

    Possible workaround are:

    text.setText(text+"\n");
    

    or

    final String DOUBLE_BYTE_SPACE = "\u3000";
    text.setText(text + DOUBLE_BYTE_SPACE);
    

提交回复
热议问题