首页 > 代码库 > Android 自定义字体 例子

Android 自定义字体 例子

1.选择你喜欢的字体,下载字体文件

字体参考:http://www.creativebloq.com/graphic-design-tips/best-free-fonts-for-designers-1233380

2.项目assets文件中新建font文件夹,将你的字体文件放在该文件夹中


3.项目代码

布局代码:

[html] view plaincopy在CODE上查看代码片派生到我的代码片
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout  
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:orientation="vertical"  
  5.     android:layout_width="fill_parent"  
  6.     android:layout_height="fill_parent">  
  7.     <TextView  
  8.         android:id="@+id/DefaultFontText"  
  9.         android:layout_width="fill_parent"  
  10.         android:layout_height="wrap_content"  
  11.         android:textSize="30sp"  
  12.         android:text="Here is some text." />  
  13.     <TextView  
  14.         android:id="@+id/CustomFontText"  
  15.         android:layout_width="wrap_content"  
  16.         android:layout_height="wrap_content"  
  17.         android:textSize="30sp"  
  18.         android:text="Here is some text.">  
  19.         </TextView>  
  20. </LinearLayout>  

activity代码:

[java] view plaincopy在CODE上查看代码片派生到我的代码片
  1. public class Main extends Activity {  
  2.     @Override  
  3.     public void onCreate(Bundle savedInstanceState) {  
  4.         super.onCreate(savedInstanceState);  
  5.         setContentView(R.layout.main);  
  6.    
  7.         Typeface tf = Typeface.createFromAsset(getAssets(),  
  8.                 "fonts/BPreplay.otf");  
  9.         TextView tv = (TextView) findViewById(R.id.CustomFontText);  
  10.         tv.setTypeface(tf);  
  11.     }  
  12. }  

4.效果图


5.源链接

http://www.barebonescoder.com/2010/05/android-development-using-custom-fonts/

Android 自定义字体 例子