Skip to main content

Change Font type of Tab in TabLayout in Android | Android Studio

Here is the example of how to change the font of the tab in Tab layout in android

You can simply change the font type of tab Tab layout and you can also set the custom font

To change the font of tab layout, you have to paste the font in assets folder of your project


You just have to follow the one method in an existing project or for the whole example, you can refer the following code.


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="DEFAULT FONT"
android:textSize="15dp" />
<android.support.design.widget.TabLayout
android:id="@+id/tabOne"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="6dp"
android:background="@color/colorAccent"
app:tabSelectedTextColor="@android:color/black"
app:tabTextColor="@android:color/white" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="CUSTOM FONT"
android:textSize="15dp" />
<android.support.design.widget.TabLayout
android:id="@+id/tabTwo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
android:background="@color/colorAccent"
app:tabSelectedTextColor="@android:color/black"
app:tabTextColor="@android:color/white" />
</LinearLayout>
//Add Support design dependency for Tablayout
...
compile 'com.android.support:design:25.3.1'
..
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.design.widget.TabLayout;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private TabLayout mCustomFontTab;
private TabLayout mDefaultFontTab;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mDefaultFontTab = (TabLayout) findViewById(R.id.tabOne);
mCustomFontTab = (TabLayout) findViewById(R.id.tabTwo);
//Adding Tab to first Tab Layout
mDefaultFontTab.addTab(mDefaultFontTab.newTab().setText("ONE"));
mDefaultFontTab.addTab(mDefaultFontTab.newTab().setText("TWO"));
mDefaultFontTab.addTab(mDefaultFontTab.newTab().setText("THREE"));
//Adding Tab to second Tab Layout
mCustomFontTab.addTab(mCustomFontTab.newTab().setText("ONE"));
mCustomFontTab.addTab(mCustomFontTab.newTab().setText("TWO"));
mCustomFontTab.addTab(mCustomFontTab.newTab().setText("THREE"));
//call this method to change the font of second tab layout
setCustomFont();
}
public void setCustomFont() {
ViewGroup vg = (ViewGroup) mCustomFontTab.getChildAt(0);
int tabsCount = vg.getChildCount();
for (int j = 0; j < tabsCount; j++) {
ViewGroup vgTab = (ViewGroup) vg.getChildAt(j);
int tabChildsCount = vgTab.getChildCount();
for (int i = 0; i < tabChildsCount; i++) {
View tabViewChild = vgTab.getChildAt(i);
if (tabViewChild instanceof TextView) {
//Put your font in assests folder
//assign name of the font here (Must be case sensitive)
((TextView) tabViewChild).setTypeface(Typeface.createFromAsset(getAssets(), "Nosifer-Regular.ttf"));
}
}
}
}
}


Comments

Post a Comment

Popular posts from this blog

Tri-States | Indeterminate Checkbox Android

Sometimes it is required to implement checkbox with 3 states Unchecked Checked Indeterminate So here is a simple example of how to implement Tri-States or you can say Indeterminate Checkbox Android First of all, make a custom class which is extend Checkbox import android.content.Context import android.util.AttributeSet import androidx.appcompat.widget.AppCompatCheckBox import com.android.tristatescheckbox.R class TriStatesCheckBox : AppCompatCheckBox { private var state = 0 constructor ( context: Context ?) : super ( context ) { init () } constructor ( context: Context ?, attrs: AttributeSet ?) : super ( context , attrs ) { init () } constructor ( context: Context ?, attrs: AttributeSet ?, defStyleAttr: Int ) : super ( context , attrs , defStyleAttr ) { init () } private fun init () { state = UNCHECKED...

HORIZONTAL FLIP ANIMATION: VIEW PAGER TRANSFORMATION ANIMATION ANDROID

Here I am sharing you a View Pager Transformation Animation Class By Which you can give a transformation animation to you view Pager First of all, create a simple view pager example. If you don't know how to create an example for simple view pager then click below link for creating simple view pager example in android Simple View Pager Example in Android Copy below class and Paste into your project Set Page Transformer to your view pager like below viewpager.setPageTransformer(true, new HorizontalFlip Transformation ()); That's It you're done.

FADE OUT ANIMATION: VIEW PAGER TRANSFORMATION ANIMATION ANDROID

Here I am sharing you a View Pager Transformation Animation Class By Which you can give a transformation animation to you view Pager First of all, create a simple view pager example. If you don't know how to create an example for simple view pager then click below link for creating simple view pager example in android Simple View Pager Example in Android Copy below class and Paste into your project Set Page Transformer to your view pager like below viewpager.setPageTransformer(true, new FadeOutTransformation()); That's It you're done. Enjoy