ttf设置文字字体

时间:2022-04-25
本文章向大家介绍ttf设置文字字体,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

MainActivity如下:

package cn.testfont;  
 
import android.os.Bundle;  
import android.widget.TextView;  
import android.app.Activity;  
import android.graphics.Typeface;  
/** 
 * Demo描述: 
 * 利用TTF字体文件文字的显示效果 
 *  
 * 步骤如下: 
 * 1 在asset下建立fonts文件夹 
 * 2 将.ttf文件拖入fonts文件夹Typeface 
 * 3 在代码中为TextView设置 
 * 
 */ 
public class MainActivity extends Activity {  
 private TextView mTextView;  
 @Override 
 protected void onCreate(Bundle savedInstanceState) {  
 super.onCreate(savedInstanceState);  
        setContentView(R.layout.main);  
        init();  
    }  
 
 private void init(){  
        mTextView=(TextView) findViewById(R.id.textView);  
        Typeface typeface = Typeface.createFromAsset(getAssets(),"fonts/test.ttf");  
        mTextView.setTypeface(typeface);  
    }  
}  

main.xml如下:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:tools="http://schemas.android.com/tools" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" 
 > 
 
 <TextView 
 android:id="@+id/textView" 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:text="9527" 
 android:textSize="22sp" 
 android:layout_centerInParent="true" 
 /> 
 
</RelativeLayout>