0

我是android编程新手..我只想问如何在xml中更改字体样式和字体颜色???..以及如何在xml中显示分隔符?谢谢

4

1 回答 1

0

使用 android:textcolor 颜色和 android:typeface 字体以使用自定义字体,您可以使用 java 中的以下内容

TextView text = (TextView) findViewById(R.id.textview03);
Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/Molot.otf");
text.setTypeface(tf);

您将自定义字体文件放在 assets 文件夹中的位置。

于 2013-03-09T16:26:47.160 回答