さまざまなフォント スタイルを使用したい。さまざまなフォント スタイルに次のコードを使用しています。他のスタイルを取得するにはどうすればよいですか? 同じ 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);