0

I want to know where I can download Helvetica Neue Ultralight.ttf for Android App.

I also want to know how to implement it in project?

Exikle
  • 1,155
  • 2
  • 18
  • 42
user3555472
  • 836
  • 3
  • 11
  • 38

2 Answers2

3

A simple Google search yielded a download for the font, and a quick SO search yielded your answer to add it to your app.

Regards, Nate

Community
  • 1
  • 1
Nate
  • 48
  • 2
0

Use in class like this:

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

    tv.setTypeface(face);

put the font file in the fonts folder in /res/

Like my answer if it is helpful...

Ravind Maurya
  • 977
  • 15
  • 24