我在哪里可以下载Helvetica Neue Ultralight.ttf

时间:2014-05-09 04:37:20

标签: android text fonts textview

我想知道在哪里可以下载Helvetica Neue Ultralight.ttf for Android App。

我也想知道如何在项目中实现它?

2 个答案:

答案 0 :(得分:3)

一个简单的Google搜索为该字体提供了download,并且快速SO搜索产生了answer to add it to your app

此致 内特

答案 1 :(得分:0)

在课堂上使用如下:

TextView tv=(TextView)findViewById(R.id.custom);
    Typeface face=Typeface.createFromAsset(getAssets(),
                                          "fonts/Verdana.ttf");

    tv.setTypeface(face);

将字体文件放在/ res /

中的fonts文件夹中

喜欢我的答案,如果它有用......