I am creating one Application in which I want to set custom font.
But I can't use custom Fonts in .xml file, for using this I need to initialize each and every TextView in .java file.
This process is Too much lengthy and time consuming.
If anyone know then please help me...
Beginning with Android 8.0 (API 26), there is native support for setting the fonts in XML. However, using the support library extends this down to Android 4.1 (API 16).
res
folder and go to New > Android Resource Directory. Type font
as the name and font as the Resource type.res/font
directory. I'm just using a single font in my example, the regular dancing script font. I renamed it to dancing_script.ttf
just to avoid any potential naming problems with upper case or illegal characters. font-family
XML file.res/font
folder and choose New > Font Resource File
. Call it whatever you want. I'm calling mine my_custom_font.xml
.Paste in the following code. Note that the attributes are set twice, once for android
(API 26+) and once for app
(API 16+).
<?xml version="1.0" encoding="utf-8"?> <font-family xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <font android:fontStyle="normal" android:fontWeight="400" android:font="@font/dancing_script" app:fontStyle="normal" app:fontWeight="400" app:font="@font/dancing_script" /> </font-family>
Now you can just use the fontFamily
attribute to set the font in XML.
<TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" android:fontFamily="@font/my_custom_font" />
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With