jxgxy

android 改变文字的大小和字体

先在 assets 目录中新建 fonts 目录,然后把字体文件拷进去,我以"汉仪柏青体简"为例。

 

设置代码:

TextView txtView = (TextView)findViewById(R.id.textView1);
                txtView.setTypeface(Typeface.createFromAsset(getAssets(), "fonts/haiyiboqingti.ttf"));
                txtView.setTextSize(30);
                txtView.setText("我是刘一手,Hello world.");


效果如下:

 

分类:

技术点:

相关文章:

  • 2021-10-13
  • 2021-11-18
  • 2021-10-21
  • 2021-11-28
  • 2021-05-10
  • 2021-05-29
  • 2021-10-15
猜你喜欢
  • 2021-04-10
  • 2021-11-30
  • 2021-05-10
  • 2021-04-05
  • 2021-11-15
  • 2021-04-22
  • 2021-07-01
相关资源
相似解决方案