字体是指的是类似于 黑体,斜体,楷体等。
1,Android胎带的
在xml文件中是可以设置 Android中带有的三个字体的。
android:id="@+id/hello"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Android:typeface="serif"
/>
这里是有三个选项的,sans,serif,monospace具体是什么自己尝试~~~
2,我们想变成的字体。
/*
* 必须事先在assets底下创建一fonts文件夹 并放入要使用的字体文件(.ttf)
* 并提供相对路径给creatFromAsset()来创建Typeface对象
*/
Typeface fontFace = Typeface.createFromAsset(getAssets(),
"fonts/STXINGKA.TTF");
// 字体文件必须是true type font的格式(ttf);
// 当使用外部字体却又发现字体没有变化的时候(以 Droid Sans代替),通常是因为
// 这个字体android没有支持,而非你的程序发生了错误
TextView text = (TextView) findViewById(R.id.ttf);
text.setTypeface(fontFace);
至于ttf文件也很好找。
复制粘贴到这个文件夹下就好咯。效果我就不展示了。
我这文章好傻。
但是我人很帅。