Android自定義字型--自定義TextView(可擴充套件不同ttf字

yifanwu發表於2021-09-09

1.最簡單直接的方式設定字型

(1)-初始化控制元件,拿到該控制元件的物件,設定字型

textView.setTypeface( Typeface.createFromAsset(this.getAssets(), "CodeBold.ttf"));

這種方式只適用於單個,少數字體需要改變樣式。如果UI中每一行的字型樣式都不一樣呢?例如


圖片描述

ttf 字型

2.透過自定義TextView來設定字型

如下呼叫

<com.***.***.view.TypefaceTextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textSize="@dimen/font_12sp"
  app:typeface="@string/universal_text_typeface" />

在values下的strings中設定name

  <string name="universal_text_typeface">PingFangLight</string>

接下來 在values下建立一個attrs.xml檔案

<?xml version="1.0" encoding="utf-8"?><resources>
    <declare-styleable name="TypefaceTextView">
        <attr name="typeface" format="string" />
    </declare-styleable></resources>

之後就是自定義TextView

public class TypefaceTextView extends android.support.v7.widget.AppCompatTextView {    public TypefaceTextView(Context context) {        this(context, null);
    }    public TypefaceTextView(Context context, AttributeSet attrs) {        this(context, attrs, 0);
    }    public TypefaceTextView(Context context, AttributeSet attrs, int defStyleAttr) {        super(context, attrs, defStyleAttr);
        initTypefaceTextView(context, attrs);
    }    private void initTypefaceTextView(Context context, AttributeSet attrs) {
        TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.TypefaceTextView);
        String type = typedArray.getString(R.styleable.TypefaceTextView_typeface);        if(null==type){            return;
        }
        Typeface typeface = null;        switch (type) {            case "PingFangLight":
                typeface = Typeface.createFromAsset(context.getAssets(), "PingFangLight.ttf");
                setTypeface(typeface);                break;            case "systemDefault":
                setTypeface(Typeface.DEFAULT);                break;
        }        if (typedArray != null) {
            typedArray.recycle();
        }
        typeface = null;
    }
}



作者:Ready_I
連結:


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2157/viewspace-2821610/,如需轉載,請註明出處,否則將追究法律責任。

相關文章