To set In-built Font at Run-Time:
First of all, To Change Font-face, a Typeface class is used.
Now, at Run-Time
, to set the font-face, Use setTypeface(Typeface)
from the Java code
at Design-Time
, to set the font-face, Use android:typeface="serif"
For example:
<TextView android:text="@+id/TextView01"
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="30px"
android:textStyle="italic"
android:typeface="serif" />
To set Custom font(s) in your Android application
To do this, simply create an assets/ folder in the project root, and put your fonts (in TrueType, or TTF, form) in the assets. You might, for example, create assets/fonts/
and put your TTF files in there:
TextView tv=(TextView)findViewById(R.id.custom);
Typeface face=Typeface.createFromAsset(getAssets(), "fonts/HandmadeTypewriter.ttf");
tv.setTypeface(face);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…