Android - 如何在xml中设置系列字体“noto sans”?

时间:2015-04-02 07:39:02

标签: android xml fonts

我正在开发针对上述Lollipop(Android 5.0)用户的Android小部件应用。

出于某些原因,我必须在我的应用中使用一种名为" noto sans"(https://www.google.com/get/noto/#/)的字体。

我听说它包含在Lollipop中,但我不知道如何在xml中使用它。

有人知道吗?

2 个答案:

答案 0 :(得分:0)

不,您不能在布局文件(XML)中使用自定义字体。您必须以编程方式使用自定义字体,如下所示

String fontPath = "fonts/calibrib.ttf";

          // Loading Font Face
          Typeface tf = Typeface.createFromAsset(mContext.getAssets(), fontPath);

TextView txtView = new TextView(this);
txtView.setTypeface(tf);

将您的字体放在assets文件夹中。以上是代码的工作原理。

enter image description here

答案 1 :(得分:0)

您可以通过覆盖TextView来创建自己的TextView,您必须将该字体放在assets文件夹中:

public class MyTextView extends TextView {

    public MyTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        setType(context);
    }

    public MyTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
        setType(context);
    }

    public MyTextView(Context context) {
        super(context);
        setType(context);
    }

    private void setType(Context context){
        this.setTypeface(Typeface.createFromAsset(context.getAssets(),
                    "foo.ttf"));

        this.setShadowLayer(1.5f, 5, 5, getContext().getResources().getColor(R.color.black_shadow));
    }
}

并像这样使用它:

<com.your.project.package.MyTextView
        android:id="@+id/oppinfo_mtv_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"  
        android:text="Player 1"
        />