I have already read some articles and searched on Google, but I failed to do it.
My problem is regarding the font-face.
In Android, there are only 4 attributes in "android:typeface": Normal, Sans, Serif, Monospace.
So what do I have to do to use “Verdana” in my application?
Please suggest me a correct way to use this font in my Android application.
This is a simple example… create a folder in the root of your project called
assets/fonts/then paste the TTF font file (in this case Verdana.ttf). Then, if you want to apply that font to, say aTextView, do the following:This example was taken from the ComonsWare book (written by Mark Murphy). You can download the full example from GitHub.