要更改字体,首先需要将字体放到 Asset 文件夹中。
下面的示例代码将显示,当单击“更改字体”按钮时,它将 TextView 的字体更改为“KRISTENC.TTF”。请注意,字体名称与资产文件夹中的字体名称完全匹配。
主要的.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"
tools:context=".MainActivity" >
<TextView
android:id="@+id/txtView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/hello_world" />
<Button
android:id="@+id/btnFont"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignRight="@+id/txtView"
android:layout_marginRight="42dp"
android:layout_marginTop="57dp"
android:text="Change Font" />
</RelativeLayout>
MainActivity.java 类
package com.font.fonttest;
import android.os.Bundle;
import android.app.Activity;
import android.graphics.Typeface;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class MainActivity extends Activity implements OnClickListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button btnFont = (Button) findViewById(R.id.btnFont);
btnFont.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btnFont:
// Please put the Font KRISTENC.TTF to Assets folder
Typeface font = Typeface.createFromAsset(getAssets(), "KRISTENC.TTF");
// TextView to show the result
TextView textView1 = (TextView)findViewById(R.id.txtView);
// When click the button change the font type to KRISTENC.TTF
textView1.setTypeface(font);
}
}
}