Search code examples
androidfontstextviewtruetypeandroid-assets

Different TTF files for different font in android


I want to use different font styles. I'am using the following code for different font style. How can i get other styles? Can i have some other styles in same ttf file? Where do i get ttf files of different fonts?

TextView txt = (TextView) findViewById(R.id.custom_font);  
Typeface font = Typeface.createFromAsset(getAssets(), "Chantelli_Antiqua.ttf"); 
txt.setText("This is sample text with Chantelli Antiqua font style.");
txt.setTypeface(font); 

Solution

  • If you are looking for only styles with the same font you can add style to your Typeface like this,

    txt.setTypeface(font,Style.BOLD);
    txt.setTypeface(font,Style.ITALIC); 
    txt.setTypeface(font,Style.BOLD_ITALIC);