-3
可能重複:
Android: Want to set custom fonts for whole application not runtime如何爲整個應用程序應用自定義字體?
我知道有通過以下方式做這件事的方式。但是我想將字體應用於整個應用程序。那可能嗎?
TextView txt = (TextView) findViewById(R.id.customfont);
Typeface font = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf");
txt.setTypeface(font);