使用 android:textcolor 颜色和 android:typeface 字体以使用自定义字体,您可以使用 java 中的以下内容
TextView text = (TextView) findViewById(R.id.textview03);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf");
text.setTypeface(tf);
您将自定义字体文件放在 assets 文件夹中的位置。