|
Typeface类定义字体和字体内在的类型。这个类被用在画笔Paint设置的时候,比如用textSize,textSkewX和textScale设置来指定text在画的时候如何来显示和测量。
Typeface 提供了一些常量值来表示自身的一些属性,比如BOLD,BOLD_ITALIC,ITALIC等,开发者可以用 defaultFrOPhone SDNtyle(int style)获得内在的Typeface对象。读者可以参考详细的API文档再这里就不再赘述了。
下面我们来看一下Typeface的主要方法:
Typeface类没有构造方法,通常如果一个类没有构造函数就无法通过构造来生成一个对象实体,此时一般会有特定的静态方法来取得这个类的实体。Typeface就提供了四个静态方法间接来得到Typeface实体分别如下:
Public static Typeface create(Typeface family,int style);
此方法返回一个与已经存在的Typeface字形体系相匹配且类型是指定类型的Typeface。如果你想得到一个与已经存在的Typeface字形体系相类似,但是样式不一样的Typeface时可以调用此方法。其中family参数可以为null,如果为空则表示从默认的Typeface字形体系中选择。
Public static Typefaxe create(String familyname,int style);
此方法通过给定的字形体系的名称familyname和指定的类型返回一个Typeface对象。如果给定字形体系的名称为null,我们可以通过getStyle()方法来获得返回Typeface对象的真正的属性。
Public static Typeface createFromAsset(AssetManager mgr,String path);
此方法通过规定的字体数据来返回一个Typeface对象。第一个参数为资源管理器,第二个参数是指定字体类型。
Public static Typeface defaultFrOPhone SDNtyle(int style);此方法返回一个指定类型的Typeface对象
Typeface还提供了另外三个方法:
Public int getStyle();此方法返回Typeface内在的类型属性
Public final Boolean isBold();如果getStyle()有BOLD位组将返回true
Public final Boolean isItalic();如果getStyle()有ITALIC位组将返回true
java代码: package eoe.demo;
import android.widget.TextView;
import android.os.Bundle;
import android.view.ViewGroup;
import android.app.Activity;
import android.graphics.Color;
import android.widget.LinearLayout;
import android.graphics.Typeface;
public class typefaceTest extends Activity {
final int WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
LinearLayout linearLayout = new LinearLayout(this);
linearLayout.setOrientation(LinearLayout.VERTICAL);
setContentView(linearLayout);
TextView redTV = new TextView(this);
redTV.setTextSize(24.0f);//Set the paint’s text size. This value must be > 0
redTV.setText(“abcdefgh”);
redTV.setTypeface(Typeface.SERIF);//The NORMAL style of the default sans serif typeface.
redTV.setTextColor(Color.RED);
linearLayout.addView(redTV, new LinearLayout.LayoutParams(WRAP_CONTENT,
WRAP_CONTENT));
TextView greenTV = new TextView(this);
greenTV.setTextSize(24.0f);//Set the paint’s text size. This value must be > 0
greenTV.setText(“abcdefgh”);
greenTV.setTypeface(Typeface.create(Typeface.SERIF, Typeface.BOLD));
greenTV.setTextColor(Color.GREEN);
linearLayout.addView(greenTV, new LinearLayout.LayoutParams(
WRAP_CONTENT, WRAP_CONTENT));
TextView blueTV = new TextView(this);
blueTV.setTextSize(24.0f);//Set the paint’s text size. This value must be > 0
blueTV.setText(“abcdefgh”);
blueTV.setTypeface(Typeface.create(Typeface.SERIF, Typeface.BOLD_ITALIC));
blueTV.setTextColor(Color.BLUE);
linearLayout.addView(blueTV, new LinearLayout.LayoutParams(
WRAP_CONTENT, WRAP_CONTENT));
TextView grayTV = new TextView(this);
grayTV.setTextSize(24.0f);//Set the paint’s text size. This value must be > 0
grayTV.setText(“abcdefgh”);
grayTV.setTypeface(Typeface.create(Typeface.SERIF, Typeface.ITALIC));
grayTV.setTextColor(Color.GRAY);
linearLayout.addView(grayTV, new LinearLayout.LayoutParams(
WRAP_CONTENT, WRAP_CONTENT));
TextView blackTV = new TextView(this);
blackTV.setTextSize(24.0f);//Set the paint’s text size. This value must be > 0
blackTV.setText(“abcdefgh”);
blackTV.setTypeface(Typeface.create(Typeface.SERIF, Typeface.NORMAL));
blackTV.setTextColor(Color.BLACK);
linearLayout.addView(blackTV, new LinearLayout.LayoutParams(
WRAP_CONTENT, WRAP_CONTENT));
}
}
复制代码 |
|