更改android字体

字体下载库地址:http://font.niutuku.com/TTF/index_3.shtml

直接下载解压即可.

将解压的.ttf放到资源目录下(如下图)


mWord = (EditText) findViewById(R.id.word);
mWord.setTypeface(Typeface.createFromAsset(getAssets(), "fonts/test.ttf"));
  
完成!     

猜你喜欢

转载自blog.csdn.net/qq_36665856/article/details/79563113