[转载]android开发之史上最全系列之android用户界面之字体-Android资料下载-eoe 移动开发者论坛 – Powered by Discuz!
- Android
- 2014-10-07
- 85热度
- 0评论
[转载]android开发之史上最全系列之android用户界面之字体-Android资料下载-eoe 移动开发者论坛 - Powered by Discuz!.
[xml]
[/xml]
程序代码
[java]
package com.xyw.android.ttftest;
import android.os.Bundle;
import android.app.Activity;
import android.graphics.Typeface;
import android.view.Menu;
import android.widget.TextView;
public class MainActivity extends Activity {
private TextView ttf4=null,ttf5=null,ttf6=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Typeface tf=Typeface.createFromAsset(getAssets(), "pop.ttf");
ttf4=(TextView)findViewById(R.id.ttf4);
ttf5=(TextView)findViewById(R.id.ttf5);
ttf6=(TextView)findViewById(R.id.ttf6);
ttf4.setTypeface(tf);
tf=Typeface.createFromAsset(getAssets(), "cle.ttf");
ttf5.setTypeface(tf);
tf=Typeface.createFromAsset(getAssets(), "baby.ttf");
ttf6.setTypeface(tf);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
[/java]
字体文件见附件
测试字体.haozip01.zip (8 MB, 下载次数: 99)
测试字体.haozip02.zip (1.81 MB, 下载次数: 64)