Skip to content Skip to sidebar Skip to footer

Custom Font In View Pager In Android

I am developing demo application in which I am using view pager. Now I want to know that can we change the text style of Title displayed in view pager. Please give your suggestions

Solution 1:

Working demo

TextViewtxt= (TextView) v.findViewById(R.id.custom_font);  

and then change your font

Something like this:

switch (position) {
     case0:
            v = (LinearLayout) LayoutInflater.from(cxt).inflate(R.layout.lcmeter, null);
            TextViewtxt= (TextView) v.findViewById(R.id.custom_font); 
            Typefacefont= Typeface.createFromAsset(getAssets(), "Chantelli_Antiqua.ttf");  
            txt.setTypeface(font); 
            break;
     }

Post a Comment for "Custom Font In View Pager In Android"