Android等宽字体

Android等宽字体

效果图

Android等宽字体_第1张图片

在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);

你可能感兴趣的:(android,字体,等宽)