textview cutting off a letter in android

前端 未结 11 2379
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-18 12:56

\"http://dl.dropbox.com/u/24856/Screenshots/android/cutoff.png\"

this is a screen shot from my android. the text is

11条回答
  •  無奈伤痛
    2021-02-18 13:32

    You could always create custom TextView that will use for example this font (cause in fact this is a problem with italic type):

    Typeface tf = Typeface.createFromAsset(context.getAssets(), "fonts/Roboto-LightItalic.ttf");
    setTypeface(tf);
    

    More details here.

提交回复
热议问题