Android字体Typeface设置

时间:2023-02-01 20:54:20

Android提供三种字体:“Sans”,“serif”和“monospace”。

1、在Android XML文件中设置字体

可以采用android:typeface,例如android:typeface=”monospace”。在这里例子中我们在Activity中对android:text=”Hello, World! 您好”分别进行了四种显示方式,依次为“Sans”,“serif”,“monospace”和系统缺省方式(经试验缺省采用采用sans)。英文字体有差异,貌似中文字体没有差异。XML文件如下:

<?xml version=”1.0″ encoding=”utf-8″?>
<TableLayout … … android:stretchColumns = “1″>
<TableRow>
<TextView android:text=”sans:”
android:layout_marginRight=”4px”
android:textSize=”20sp” />
<TextView android:text=”Hello, World! 您好”
android:typeface=”sans” <!– android:typeface用于指定字体–>
android:textSize=”20sp” />
</TableRow>
… …类同,依次设置两个TableRow,分别将sans 修改为serif,monospace … …
<TableRow>
<TextView android:text=”custom:” …. />
<TextView android:id=”@+id/c12_custom” 
android:text=”Hello, World! 您好”
android:textSize=”20sp” />
</TableRow>
</TableLayout>

2、使用其他字体
Android字体Typeface设置
1)将新字体的TTF文件copy到assets/fonts/目录下面,例如我们将“*.ttf”copy了过去。

2)我们需要将widget设置为该字体,比较遗憾的是,不能直接在XML文件中进行,需要编写源代码。

TextView tv = (TextView)findViewById(R.id.c12_custom);
//从assert中获取有资源,获得app的assert,采用getAserts(),通过给出在assert/下面的相对路径。在实际使用中,字体库可能存在于SD卡上,可以采用createFromFile()来替代createFromAsset。
Typeface face = Typeface.createFromAsset(getAssets()“fonts/timesi.ttf”);
tv.setTypeface(face);

我在模拟器中先后导入华文行楷的字体,大约4M,但是系统无法识别出该字体,没有显示,然后尝试使用英文字体timesi.ttf,正常。因此Android并非和所有的TTF字体都能兼容,尤其在中文特殊字体的支持会存在问题,对于不兼容的字体,Android不出报错,只是无法正常显示。一般而言我们都会使用系统缺省提供的字体。

对于华文行楷字体,我们一开始使用的文件是中文名字,出现报错,后来我们将之改为全小写的英文名称就不会出错,所以在文件命名上需要注意。

3、一些注意

使用其他字库,都会消耗程序的空间,这是要非常注意的。而且这些字库有时并不能完全提供你所需要的文字。

举个例子,省略方式。当文字太多的时候,可以通过省略号省略后面的内容,省略号是使用“…”作为一个字体,可通过android:ellipsize属性进行设置。如果我们需要使用省略功能,需要确保字体具有省略号。此外,为了保证长度的一直,Android会进行填充处理,除了将一个字符更换为省略符合外,后面的字符将更换为一个特殊的Unicode字符,‘ZERO WIDTH NO-BREAK SPACE’ (U+FEFF)。这个字符并占用任何可视的位置,但是保障了string具有同样的长度。不是所有的字体都支持这个特殊的字符,可能会引发一些乱码现象。

Android是支持国际语言的,但是我们仍需要对custom的字体小心处理。


//////////////////////////////////////////////////////////////////


Paint mp = new paint();
mp.setTypeface(Typeface.DEFAULT_BOLD)

常用的字体类型名称还有:

  * Typeface.DEFAULT //常规字体类型

  * Typeface.DEFAULT_BOLD //黑体字体类型

  * Typeface.MONOSPACE //等宽字体类型

  * Typeface.SANS_SERIF //sans serif字体类型

  * Typeface.SERIF //serif字体类型

除了字体类型设置之外,还可以为字体类型设置字体风格,如设置粗体:

Paint mp = new Paint();
Typeface font = Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD);
p.setTypeface( font );

常用的字体风格名称还有:

  * Typeface.BOLD //粗体

  * Typeface.BOLD_ITALIC //粗斜体

  * Typeface.ITALIC //斜体

  * Typeface.NORMAL //常规


但是有时上面那些设置在绘图过程中是不起作用的,所以还有如下设置方式:

Paint mp = new Paint();
mp.setFakeBoldText(true); //true为粗体,false为非粗体
mp.setTextSkewX(-0.5f); //float类型参数,负数表示右斜,整数左斜
mp.setUnderlineText(true); //true为下划线,false为非下划线
mp.setStrikeThruText(true); //true为删除线,false为非删除线


///////////////////////////////////////////////////////////////////////////////////////////

android.graphics.Typeface实践



字体风格Typeface种类 

int Style类型

BOLD
BOLD_ITALIC
ITALIC
NORMAL
粗体
粗斜体
斜体
普通字体

Typeface类型
DEFAULT
DEFAULT_BOLD
MONOSPACE
SANS_SERIF
SERIF
默认字体
默认粗体
单间隔字体
无衬线字体
衬线字体

Typeface.create(Typeface family,int style)
创建一个混合型新的字体:有4*5中搭配


Typeface.setTypeface (Typeface tf, int style) 
设置一个混合型字体:有4*5中搭配


Typeface.setTypeface(Typeface tf)
设置一个只有Typeface风格的字体:有五种形式



编程实现以上静态域字体


① 创建新工程

② 修改mianActivity.java,实现多种字体TextView显示

  1. package zyf.TypefaceStudy;
  2. /*导入要使用的包*/
  3. import android.app.Activity;
  4. import android.graphics.Color;
  5. import android.graphics.Typeface;
  6. import android.os.Bundle;
  7. import android.view.ViewGroup;
  8. import android.widget.LinearLayout;
  9. import android.widget.TextView;
  10. public class TypefaceStudy extends Activity {
  11. /** Called when the activity is first created. */
  12. /*
  13. * android.graphics.Typeface java.lang.Object 
  14.         Typeface类指定一个字体的字体和固有风格.
  15. * 该类用于绘制,与可选绘制设置一起使用, 
  16.      如textSize, textSkewX, textScaleX 当绘制(测量)时来指定如何显示文本.
  17. */
  18. /* 定义实例化一个 布局大小,用来添加TextView */
  19. final int WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;
  20. /* 定义TextView对象 */
  21. private TextView bold_TV, bold_italic_TV, default_TV,
  22.                         default_bold_TV,italic_TV,monospace_TV,
  23.                         normal_TV,sans_serif_TV,serif_TV;
  24. /* 定义LinearLayout布局对象 */
  25. private LinearLayout linearLayout;
  26. /* 定义LinearLayout布局参数对象 */
  27. private LinearLayout.LayoutParams linearLayouttParams;
  28. @Override
  29.     public void onCreate(Bundle icicle) {
  30.         super.onCreate(icicle);
  31.         /* 定义实例化一个LinearLayout对象 */
  32.         linearLayout = new LinearLayout(this);
  33.         /* 设置LinearLayout布局为垂直布局 */
  34.         linearLayout.setOrientation(LinearLayout.VERTICAL);
  35.         /*设置布局背景图*/
  36.         linearLayout.setBackgroundResource(R.drawable.back);
  37.         /* 加载LinearLayout为主屏布局,显示 */
  38.         setContentView(linearLayout);
  39.         /* 定义实例化一个LinearLayout布局参数 */
  40.         linearLayouttParams =
  41.            new LinearLayout.LayoutParams(WRAP_CONTENT,WRAP_CONTENT);
  42.         constructTextView();
  43.         setTextSizeOf();
  44.         setTextViewText() ;
  45.         setStyleOfFont();
  46.         setFontColor();
  47.         toAddTextViewToLayout();
  48.     }
  49.     public void constructTextView() {
  50.         /* 实例化TextView对象 */
  51.         bold_TV = new TextView(this);
  52.         bold_italic_TV = new TextView(this);
  53.         default_TV = new TextView(this);
  54.         default_bold_TV = new TextView(this);
  55.         italic_TV = new TextView(this);
  56.         monospace_TV=new TextView(this);
  57.         normal_TV=new TextView(this);
  58.         sans_serif_TV=new TextView(this);
  59.         serif_TV=new TextView(this);
  60.     }
  61.     public void setTextSizeOf() {
  62.         // 设置绘制的文本大小,该值必须大于0
  63.         bold_TV.setTextSize(24.0f);
  64.         bold_italic_TV.setTextSize(24.0f);
  65.         default_TV.setTextSize(24.0f);
  66.         default_bold_TV.setTextSize(24.0f);
  67.         italic_TV.setTextSize(24.0f);
  68.         monospace_TV.setTextSize(24.0f);
  69.         normal_TV.setTextSize(24.0f);
  70.         sans_serif_TV.setTextSize(24.0f);
  71.         serif_TV.setTextSize(24.0f);
  72.     }
  73.     public void setTextViewText() {
  74.         /* 设置文本 */
  75.         bold_TV.setText("BOLD");
  76.         bold_italic_TV.setText("BOLD_ITALIC");
  77.         default_TV.setText("DEFAULT");
  78.         default_bold_TV.setText("DEFAULT_BOLD");
  79.         italic_TV.setText("ITALIC");
  80.         monospace_TV.setText("MONOSPACE");
  81.         normal_TV.setText("NORMAL");
  82.         sans_serif_TV.setText("SANS_SERIF");
  83.         serif_TV.setText("SERIF");
  84.     }
  85.     public void setStyleOfFont() {
  86.         /* 设置字体风格 */
  87.         bold_TV.setTypeface(null, Typeface.BOLD);
  88.         bold_italic_TV.setTypeface(null, Typeface.BOLD_ITALIC);
  89.         default_TV.setTypeface(Typeface.DEFAULT);
  90.         default_bold_TV.setTypeface(Typeface.DEFAULT_BOLD);
  91.         italic_TV.setTypeface(null, Typeface.ITALIC); 
  92.         monospace_TV.setTypeface(Typeface.MONOSPACE);
  93.         normal_TV.setTypeface(null, Typeface.NORMAL);
  94.         sans_serif_TV.setTypeface(Typeface.SANS_SERIF);
  95.         serif_TV.setTypeface(Typeface.SERIF);
  96.     }
  97.     public void setFontColor() {
  98.         /* 设置文本颜色 */
  99.         bold_TV.setTextColor(Color.BLACK);
  100.         bold_italic_TV.setTextColor(Color.CYAN);
  101.         default_TV.setTextColor(Color.GREEN);
  102.         default_bold_TV.setTextColor(Color.MAGENTA);
  103.         italic_TV.setTextColor(Color.RED);
  104.         monospace_TV.setTextColor(Color.WHITE);
  105.         normal_TV.setTextColor(Color.YELLOW);
  106.         sans_serif_TV.setTextColor(Color.GRAY);
  107.         serif_TV.setTextColor(Color.LTGRAY);
  108.     }
  109.     public void toAddTextViewToLayout() {
  110.         /* 把TextView加入LinearLayout布局中 */
  111.         linearLayout.addView(bold_TV, linearLayouttParams);
  112.         linearLayout.addView(bold_italic_TV, linearLayouttParams);
  113.         linearLayout.addView(default_TV, linearLayouttParams);
  114.         linearLayout.addView(default_bold_TV, linearLayouttParams);
  115.         linearLayout.addView(italic_TV, linearLayouttParams);
  116.         linearLayout.addView(monospace_TV, linearLayouttParams);
  117.         linearLayout.addView(normal_TV, linearLayouttParams);
  118.         linearLayout.addView(sans_serif_TV, linearLayouttParams);
  119.         linearLayout.addView(serif_TV, linearLayouttParams);
  120.     }
  121. }
复制代码
③ 结果
Android字体Typeface设置