如何在listview中更改字体textview?

时间:2012-09-29 20:47:35

标签: android listview fonts textview typeface

我正在尝试通过字体更改字体。请参阅this

我想更改.ttf字体文件中的'currency'(文本视图)字体。我该怎么做?

2 个答案:

答案 0 :(得分:0)

创建一个字体,然后在您的edittext中应用它,如下所示: -

Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font.ttf");   
editText.setTypeface(tf);

答案 1 :(得分:0)

<TextView
    ...
    android:typeface="sans"
/>