码迷,mamicode.com
首页 > 移动开发 > 详细

Android 自定义字体 例子

时间:2014-10-15 05:04:09      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   blog   http   io   os   ar   java   

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

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

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

bubuko.com,布布扣

3.项目代码

布局代码:

[html] view plaincopybubuko.com,布布扣bubuko.com,布布扣
  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 plaincopybubuko.com,布布扣bubuko.com,布布扣
  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.效果图

bubuko.com,布布扣

5.源链接

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

Android 自定义字体 例子

标签:des   android   style   blog   http   io   os   ar   java   

原文地址:http://www.cnblogs.com/yido9932/p/4025529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!