Android等宽字体

Android等宽字体

效果图

P1

在xml中设置

添加属性

android:typeface="monospace"

例如

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:text="123456789"
    android:typeface="monospace" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="iiiiiiiii"
    android:typeface="monospace" />

在代码中设置

textview.setTypeFace(Typeface.MONOSPACE);

posted on 2015-12-18 17:11  封起De日子  阅读(953)  评论(0编辑  收藏  举报

导航