#Android 自定义字体样式
Android中自定义字体设置一般通过 facetype属性进行设置,先看一下官网提供的方法
顾名思义 就是说我们可以通过使用项目中assets文件下的资产文件或者是android本身的系统文件进行字体设置。
如果使用assets方法的话,首先我们需要在项目路径下创建assets文件夹,
如图所示,设置好文件之后,可以使用
Typeface typeface1 = Typeface.createFromAsset(this.getAssets(),"fonts/1.TTF");
tvText1.setTypeface(typeface1);
方法 或者 自定义一个 TextView的子类
public class MyTextView extends TextView {
public MyTextView(Context context) {
super(context);
}
public MyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyTextView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
public void setTypeface(Typeface tf, int style) {
super.setTypeface(Typeface.createFromAsset(getContext().getAssets(), "2.tff"));
}
}
如果使用系统文件的话,在引用的时候路径设置需要注意路径的设置需要一system开头
Typeface tf = Typeface.createFromFile("/system/fonts/AndroidClock.ttf")
通过这些方法均可以实现自定义的TextView的文本样式
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。