How To Apply Custom Fonts To Views

Android
 

Introduction

 
In this article, we will learn how to apply custom fonts to Views in Android, such as Toolbar and MenuItem, separately from Views such as TextView and EditText.
 

FontUtils

 
FontUtils is a tiny font utility library used to apply custom fonts to Views. It supports the following Views.
  • Toolbar
  • NavigationView
  • Menu
  • Submenu
  • Other Views like EditText, TextView, etc.
This library supports the following languages.
  • Android – Java
  • Android – Kotlin
  • Android
Steps
 
I have split this part into 3 steps as in the following.
  • Step 1 - Creating a New Project with Empty Activity.
  • Step 2 - Setting up the Library for Android Views.
  • Step 3 - Applying Custom fonts to Android Views.
Step 1
  1. Open Android Studio and select "Create a new project".
  2. Name the project as you wish and select an empty activity.
     
    Android
  1. Click Finish button to create a new project in Android Studio.
Step 2
 
In this part, we will see how to set up the library for the project.
  1. Open your app level build.gradle file and add the following lines to download the library. 
    1. …  
    2. implementation 'com.ajts.androidmads.fontutils:fontutils:1.0.1'  
    3. …  
  1. Then, click “Sync Now” to download the library.
  2. We need to use “compile” instead of “implementation” if we are using Android Studio version below 3.0.
Step 3
 
In this part, we will see how to apply custom fonts to Views. Here, we have to use “Typeface” and to learn more about “TypeFace” Click here.
  1. In this article, I am assigning the fonts from the Assets folder. To create an assets folder, in the app folder select New. Then, select Folder and click the Assets folder.
  2. Then, copy and paste the fonts you want to use with your application.
  3. The following lines show how to initialize the library.
    1. // Applying Custom Font  
    2. Typeface typeface = Typeface.createFromAsset(getAssets(), "custom_font.ttf");  
    3. // Init Library  
    4. FontUtils fontUtils = new FontUtils();  
  1. Then, initialize your Views and apply the fonts to the Views. The following example shows how to apply the fonts to Toolbar of your application.
    1. // Apply font to Toolbar  
    2. fontUtils.applyFontToToolbar(toolbar, typeface);  
  1. You can apply custom fonts to other Views like NavigationView, Menu, Submenu, TextView like in following example.
    1. // Apply font to NavigationView  
    2. fontUtils.applyFontToNavigationView(navigationView, typeface);  
    3. // Apply font to Menu  
    4. fontUtils.applyFontToMenu(menu, typeface);  
    5. // Apply font to Other Views like TextView...  
    6. fontUtils.applyFontToView(textview, typeface);  
    7. fontUtils.applyFontToView(editText, typeface);  
    8. fontUtils.applyFontToView(radioButton, typeface);  
    9. fontUtils.applyFontToView(checkBox, typeface);  

For Kotlin

 
We need to do the same steps mentioned. But we need to include Kotlin support while creating the project. Apply font to Views in Kotlin as shown below.
  1. // Applying Custom Font  
  2. val typeface = Typeface.createFromAsset(assets, "custom_font.ttf")  
  3. // Init Library  
  4. val fontUtils = FontUtils()  
  5. // Apply font to Toolbar  
  6. fontUtils.applyFontToToolbar(toolbar, typeface)  
  7. // Apply font to NavigationView  
  8. fontUtils.applyFontToNavigationView(navigationView, typeface)  
  9. // Apply font to Menu  
  10. fontUtils.applyFontToMenu(menu, typeface)  
  11. // Apply font to Other Views like TextView...  
  12. fontUtils.applyFontToView(textview, typeface)  
  13. fontUtils.applyFontToView(editText, typeface)  
  14. fontUtils.applyFontToView(radioButton, typeface)  
  15. fontUtils.applyFontToView(checkBox, typeface)  
For Xamarin.Android
 
We can apply the same with Xamarin.Android. To know more Click Here.
 
Download Code
 
I hope the article was informative for you. If so, please like and star the repo in GitHub. You can download the code here.
 
Note
  • Java and Kotlin Android Support - https://github.com/androidmads/FontUtils
  • Xamarin.Android Support - https://github.com/Xamarin-Gists/XAFontUtilsLibrary


Similar Articles