Android 自定義TextView字型!

2021-07-03 13:07:58 字數 935 閱讀 6462

兩種方法:

方法一:

在assets目錄下新建目錄fonts,然後存放自己的字型庫,我這裡是微軟雅黑weiruanyahei.ttf。

textview tv;

typeface tf2 = typeface.createfromasset(getassets(),"fonts/weiruanyahei.ttf");

tv.settypeface(tf2);

方法二:建立基類,xml統一使用

package com.insight.androidfont;

import android.content.context;

import android.graphics.typeface;

import android.util.attributeset;

import android.widget.textview;

public class fonttextview extends textview

public void settypefacename(string typefacename)

public fonttextview(context context, attributeset attrs, int defstyle) else

if (typefacename != null && !"".equals(typefacename))

}public fonttextview(context context, attributeset attrs) else

if (typefacename != null && !"".equals(typefacename))

}public fonttextview(context context) }}

下面是布局:

大字型是要設定的屬性,weiruanyahei是字型庫的名字

Android自定義控制項 自定義屬性

自定義屬性的過程 1.在res values資料夾中建立attrs的xml檔案。2.寫入標籤,定義子標籤attr,放入自定義屬性的名稱。format 可以用 來同時使用 1 reference 參考某一資源id 2 color 顏色值 3 boolean 布林值 4 dimension 尺寸值 帶有...

Android自定義View 自定義元件

自繪控制項也分兩種,自定義元件和自定義容器,自定義元件是繼承view類,自定義容器時繼承viewgrounp 今天主要分析下自定義元件 還是舉個例子來的實際些,假如我們要畫乙個最簡單的textview,首先想到的就是canvas.drawtext 方法,怎麼畫了?還是得一步一步來 1 寫乙個myte...

Android自定義控制項之自定義View 二

效果如下圖 1 自定義ringview繼承view新增其構造方法並建立畫筆 public class ringview extends view protected boolean isrunning false public ringview context context public ring...