android使用微软雅黑字体,需要下载字体 ttf文件

下载地址:http://download.csdn.net/detail/xiaoliu123586/9049815

放在assert,然后引用即可,如下图:

android使用微软雅黑字体

 

1 Button button= (Button) this.findViewById(R.id.stafflogin);
2 
3 Typeface mTypeface = Typeface.createFromAsset(this.getAssets(),"fonts/wryh.ttf");
4 button.setTypeface(mTypeface);

 

相关文章:

  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2021-12-18
  • 2021-10-12
  • 2022-01-21
  • 2021-11-22
  • 2021-07-10
猜你喜欢
  • 2022-12-23
  • 2021-09-04
  • 2021-12-21
  • 2021-08-16
  • 2022-12-23
  • 2021-04-28
  • 2022-12-23
相关资源
相似解决方案