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);