修改App字体样式
程序员文章站
2024-02-20 11:03:10
...
1、在main包下面新建一个assets文件夹,
2、在assets文件夹下新建一个fonts文件夹,将我们要修改成的字体样式放到下面
3、新建一个BaseApplication继承Application。重新onCreate方法。
4、在onCreate方法中调用
TypefaceUtil.replaceSystemDefaultFont(this, "fonts/sans.ttf");
5、在TextView 或者其它控件中显示文字时调用(部分文字会有文字自身的一个高度,所有要设置这个属性取消自身高度)
android:includeFontPadding="false"
附TypefaceUtil类:
import android.app.Activity;
import android.content.Context;
import android.graphics.Typeface;
import android.support.annotation.NonNull;
import android.text.TextUtils;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import java.lang.reflect.Field;
/**
* Created by Hao on 2019/4/24.
* Describe 修改字体样式工具类
*/
public class TypefaceUtil {
/** //从asset 读取字体
* AssetManager mgr = getAssets();
* //根据路径得到Typeface
* Typeface tf = Typeface.createFromAsset(mgr, "fonts/fangsong.TTF");//仿宋
* textview.setTypeface(tf);
*/
/**
* 在Application的onCreate()中调用
* TypefaceUtil.replaceSystemDefaultFont(this, "fonts/sans.ttf");
*/
/**
* 为给定的字符串添加HTML红色标记,当使用Html.fromHtml()方式显示到TextView 的时候其将是红色的
*
* @param string 给定的字符串
* @return
*/
public static String addHtmlRedFlag(String string) {
return "<font color=\"red\">" + string + "</font>";
}
/**
* 将给定的字符串中所有给定的关键字标红
*
* @param sourceString 给定的字符串
* @param keyword 给定的关键字
* @return 返回的是带Html标签的字符串,在使用时要通过Html.fromHtml()转换为Spanned对象再传递给TextView对象
*/
public static String keywordMadeRed(String sourceString, String keyword) {
String result = "";
if (sourceString != null && !"".equals(sourceString.trim())) {
if (keyword != null && !"".equals(keyword.trim())) {
result = sourceString.replaceAll(keyword, "<font color=\"red\">" + keyword + "</font>");
} else {
result = sourceString;
}
}
return result;
}
/**
* <p>Replace the font of specified view and it's children</p>
*
* @param root The root view.
* @param fontPath font file path relative to 'assets' directory.
*/
public static void replaceFont(@NonNull View root, String fontPath) {
if (root == null || TextUtils.isEmpty(fontPath)) {
return;
}
if (root instanceof TextView) { // If view is TextView or it's subclass, replace it's font
TextView textView = (TextView) root;
int style = Typeface.NORMAL;
if (textView.getTypeface() != null) {
style = textView.getTypeface().getStyle();
}
textView.setTypeface(createTypeface(root.getContext(), fontPath), style);
} else if (root instanceof ViewGroup) { // If view is ViewGroup, apply this method on it's child views
ViewGroup viewGroup = (ViewGroup) root;
for (int i = 0; i < viewGroup.getChildCount(); ++i) {
replaceFont(viewGroup.getChildAt(i), fontPath);
}
}
}
/**
* <p>Replace the font of specified view and it's children</p>
* 通过递归批量替换某个View及其子View的字体改变Activity内部控件的字体(TextView,Button,EditText,CheckBox,RadioButton等)
*
* @param context The view corresponding to the activity.
* @param fontPath font file path relative to 'assets' directory.
*/
public static void replaceFont(@NonNull Activity context, String fontPath) {
replaceFont(getRootView(context), fontPath);
}
/*
* Create a Typeface instance with your font file
*/
public static Typeface createTypeface(Context context, String fontPath) {
return Typeface.createFromAsset(context.getAssets(), fontPath);
}
/**
* 从Activity 获取 rootView 根节点
*
* @param context
* @return 当前activity布局的根节点
*/
public static View getRootView(Activity context) {
return ((ViewGroup) context.findViewById(android.R.id.content)).getChildAt(0);
}
/**
* 通过改变App的系统字体替换App内部所有控件的字体(TextView,Button,EditText,CheckBox,RadioButton等)
*
* @param context
* @param fontPath 需要修改style样式为monospace:
*/
// <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
// <!-- Customize your theme here. -->
// <!-- Set system default typeface -->
// <item name="android:typeface">monospace</item>
// </style>
public static void replaceSystemDefaultFont(@NonNull Context context, @NonNull String fontPath) {
replaceTypefaceField("MONOSPACE", createTypeface(context, fontPath));
}
/**
* <p>Replace field in class Typeface with reflection.</p>
*/
private static void replaceTypefaceField(String fieldName, Object value) {
try {
Field defaultField = Typeface.class.getDeclaredField(fieldName);
defaultField.setAccessible(true);
defaultField.set(null, value);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
上一篇: 生成报表的神器sql
下一篇: 动态读取nacos配置工具类