StackOverflow 文档 Android 教程 获取系统字体名称并使用字体 将系统字体应用于 TextView 将系统字体应用于 TextView Created: November-22, 2018 在以下代码中,你需要将 fontsname 替换为你要使用的字体名称: placeholderCopyTextView lblexample = (TextView) findViewById(R.id.lblexample); lblexample.setTypeface(Typeface.createFromFile("/system/fonts/" + "fontsname" + ".ttf")); 获取系统字体名称