您的位置:首页 > 移动开发 > Android开发

android自定义字体

2011-10-19 14:34 190 查看
1. 定义包含1 TextView 布局:main.xml

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

<TextView

android:id="@+id/text"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:gravity="center"

/>

</LinearLayout>

2. 下载字体文件 后缀名一般为:*.ttf 如:本例为:biscuit_tin.ttf

* 在工程目录下的 assets 目录下新建文件夹:fonts 然后把*.ttf文件 复制至该目录 并刷新工程

public class MyTextTest extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Typeface fontFace = Typeface.createFromAsset(getAssets(), "fonts/biscuit_tin.ttf");

TextView text = (TextView)findViewById(R.id.text);

text.setTypeface(fontFace);

text.setText("Hello World!");

text.setTextSize(100);

}

}

考虑版权问题 *.ttf 字体文件 要大家自己找了 网络上有很多 我一直在找 微软雅黑 可惜失败 题外话 microsoft-vista 的贡献也仅于此了....

emulator 运行截图: text="Hello World!"

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: