我想将我的Android应用程序字体更改为自定义字体并更改字体大小。包括所有活动和对象以及警报对话框。 怎么做?
答案 0 :(得分:0)
我自己想通了。这是我使用的代码。我创建自定义TextView,其自定义字体为默认字体。 将自定义Textview用于您的Andrid应用程序
public class MyTextView extends TextView {
public MyTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public MyTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public MyTextView(Context context) {
super(context);
init();
}
public void init() {
Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "font/chiller.ttf");
setTypeface(tf ,1);
}
}
答案 1 :(得分:0)
如果您想更改应用中的字体,则需要
我会推荐这个库Fontify
答案 2 :(得分:0)
只需创建一个扩展Application的类,并使用application tag中的name属性在app的清单中提及该类。在该类onCreate中使用以下代码。
TypefaceUtil.overrideFont(getApplicationContext(), "SERIF", "Roboto-Thin.ttf");