我开发了一个Android自定义键盘。我需要更改使用unicodes实际打印的输出文本的字体样式。
如何在整个设备的任何位置更改键盘文本输出的字体样式,而无需更改设备的默认字体?
该字体也不在Android设备中,因此我们必须从开发键盘的同一应用程序外部提供字体。
答案 0 :(得分:4)
更改应用程序内的字体样式。
创建一个名为
的简单类FontOverride
import java.lang.reflect.Field;
import android.content.Context;
import android.graphics.Typeface;
public final class FontsOverride {
public static void setDefaultFont(Context context,
String staticTypefaceFieldName, String fontAssetName) {
final Typeface regular = Typeface.createFromAsset(context.getAssets(),
fontAssetName);
replaceFont(staticTypefaceFieldName, regular);
}
protected static void replaceFont(String staticTypefaceFieldName,
final Typeface newTypeface) {
try {
final Field staticField = Typeface.class
.getDeclaredField(staticTypefaceFieldName);
staticField.setAccessible(true);
staticField.set(null, newTypeface);
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
}
}
}
现在创建另一个类来覆盖名为
的字体应用
public final class Application extends android.app.Application {
@Override
public void onCreate() {
super.onCreate();
FontsOverride.setDefaultFont(this, "DEFAULT", "fonts/GeezEdit.ttf");
FontsOverride.setDefaultFont(this, "MONOSPACE", "fonts/GeezEdit.ttf");
/*FontsOverride.setDefaultFont(this, "MONOSPACE", "MyFontAsset2.ttf");
FontsOverride.setDefaultFont(this, "SERIF", "MyFontAsset3.ttf");
FontsOverride.setDefaultFont(this, "SANS_SERIF", "MyFontAsset4.ttf");*/
}
}
现在将此字体添加到值样式文件夹
中的android样式文件中的样式<item name="android:typeface">monospace</item>
最后在应用程序标记内的android Manifest文件中提及应用程序名称
android:name=".Application"
这将用于将用户提供的字体更改为android项目或应用程序。