在Android中,要获取系统字体,可以通过以下方法:
Typeface
类:Typeface
类提供了一些预定义的字体样式,如Typeface.DEFAULT
、Typeface.BOLD
等。你可以使用这些样式来设置文本的字体。例如:
TextView textView = findViewById(R.id.textView);
Typeface typeface = Typeface.DEFAULT;
textView.setTypeface(typeface);
你可以将字体文件(如.ttf
或.otf
格式)放在项目的res/font
目录下。然后,你可以使用ResourcesCompat.getFont()
方法来加载字体。例如:
TextView textView = findViewById(R.id.textView);
Typeface typeface = ResourcesCompat.getFont(this, R.font.my_custom_font);
textView.setTypeface(typeface);
Android系统中有一些默认的字体文件,如Roboto
、Noto
等。你可以通过Typeface.create()
方法来创建一个Typeface
对象,并指定字体名称和样式。例如:
TextView textView = findViewById(R.id.textView);
Typeface typeface = Typeface.create("Roboto", Typeface.NORMAL);
textView.setTypeface(typeface);
请注意,上述代码示例是针对Java编写的。如果你使用Kotlin,语法会略有不同。