您可以以编程方式更改 android 键盘文本字体吗?
Posted
技术标签:
【中文标题】您可以以编程方式更改 android 键盘文本字体吗?【英文标题】:Can you change the android keyboard text font programmatically? 【发布时间】:2015-09-26 22:53:24 【问题描述】:坦率地说,标题确实说明了一切,我正在尝试更改输入法服务,KeyboardView 键字体。当然..不是那么简单的
android:keyTextFont="sans-serif"
。
【问题讨论】:
看看 [this][1] 和 [this][2]。应该能解决你的问题! [1]:***.com/a/4949412/4127441 [2]:***.com/a/11718016/4127441 【参考方案1】:是的,可以通过重写 KeyboardView 的 onDraw() 方法来务实地完成。
以下是某人在键上方添加文本的示例:Customize the appearance of a <Key>
更改文本字体代码是这样的:
public class MyKeyboardView extends KeyboardView
@Override
public void onDraw(Canvas canvas)
Paint paint = new Paint();
paint.setTextAlign(Paint.Align.CENTER);
Typeface font = Typeface.createFromAsset(context.getAssets(),
"fonts/Hippie.otf"); //Insert your font here.
paint.setTypeface(font);
List<Key> keys = getKeyboard().getKeys();
for(Key key: keys)
if(key.label != null)
canvas.drawText(key.label.toString(), key.x, key.y, paint);
代码未测试
【讨论】:
对不起,我想重新迭代一下,我明确使用 InputMethodService,它没有覆盖 onDraw 而是只有 onCreateInputView 不能采用 Canvas 画布。 您是否在 onCreateInputView 中为 KeyboardView 充气?【参考方案2】:您必须创建一个扩展 KeyboardView 的新类。
package com.example.xyz;
...
...
public class CustomKeyboardView extends KeyboardView
@Override
public void onDraw(Canvas canvas)
Paint mPaint = new Paint();
mPaint.setTextAlign(Paint.Align.CENTER);
mPaint.setTextSize(40);
mPaint.setColor(Color.BLACK);
Typeface font = Typeface.createFromAsset(mContext.getAssets(),"normal_font.ttf");
mPaint.setTypeface(font);
if (key.label != null)
String keyLabel = key.label.toString();
if (caps)
keyLabel = keyLabel.toUpperCase();
canvas.drawText(keyLabel, key.x + (key.width / 2),
key.y + (key.height / 2) , mPaint);
else if (key.icon != null)
key.icon.setBounds(key.x, key.y, key.x + key.width, key.y + key.height);
key.icon.draw(canvas);
其中.ttf
文件是您项目的Assets
文件夹中的字体文件。
现在,在键盘布局 (.xml) 文件中,将 <KeyboardView/>
替换为 <com.example.xyz.CustomKeyboardView/>
【讨论】:
【参考方案3】: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 清单文件应用程序名称中
例子
<application
android:name=".Application"
android:allowBackup="false"
android:installLocation="internalOnly"
android:label="@string/ime_name"
android:theme="@style/AppTheme" >.......
现在将上面覆盖的字体名称更新为您的样式。基本主题或您在清单应用程序中使用的主题。
例子
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:typeface">monospace</item>
</style>
【讨论】:
以上是关于您可以以编程方式更改 android 键盘文本字体吗?的主要内容,如果未能解决你的问题,请参考以下文章
以编程方式在android中的软输入键盘上禁用语音到文本按钮(麦克风)