我想使用不同的字体样式。我将以下代码用于不同的字体样式。如何获得其他款式?我可以在同一个 ttf 文件中有一些其他样式吗?我在哪里可以获得不同字体的 ttf 文件?
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);