如何在自定义Android键盘中应用字体

时间:2017-10-05 04:19:43

标签: android typeface

我想为Android实现自定义keyboard,我想在keyboard上应用字体。

我在KeyboardView课程中使用Typeface,但这对我不起作用。

 @Override
public void onDraw(Canvas canvas) {
    super.onDraw(canvas);

    Paint paint = new Paint();
    paint.setTextAlign(Paint.Align.CENTER);
    int scaledSize = getResources().getDimensionPixelSize(
            R.dimen.alternate_key_label_size);
    Typeface tf = Typeface.createFromAsset(getContext().getAssets(), "fonts/Nastaleeq.ttf");
    paint.setTypeface(tf);
    paint.setTextSize(scaledSize);
    paint.setColor(Color.WHITE);
}

2 个答案:

答案 0 :(得分:1)

一个解决方案是使用keboardView.java而不是android.inputmethodservice.KeyboardView。

您还需要将paint.setTypeface(Typeface.DEFAULT_BOLD)更改为paint.setTypeface(我的字体),并且必须将attrs.xml添加到项目中。

另一种解决方案:

更改应用程序内的字体样式。 创建一个名为 FontOverride 的简单类。

std::vector<int> numbers;
// init...

std::vector<int> diffs(numbers.size() / 2);

for (int i = 0, j = 0; i < numbers.size() - 1; ++j, i += 2) {
    diffs[j] = abs(numbers[i] - numbers[i + 1]);
}

将此类添加到您的代码中。

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();
    }
    }
}

在这里你可以看到添加了一些字体/ fontname。这些是外部字体文件,您可以使用它们覆盖键盘视图/标签。

将此应用程序名称添加到android清单文件应用程序名称

示例:

public final class Application extends android.app.Application {
@Override
public void onCreate() {
    super.onCreate();
    FontsOverride.setDefaultFont(this, "DEFAULT", "fonts/Nastaleeq.ttf");
    FontsOverride.setDefaultFont(this, "MONOSPACE", "fonts/GeezEdit.ttf");

  }
}

现在将上面覆盖的字体名称更新为您的样式。基本主题或您在清单应用程序中使用的主题。

示例:

<application
    android:name=".Application"
    android:allowBackup="false"
    android:installLocation="internalOnly"
    android:label="@string/ime_name"
    android:theme="@style/AppTheme" >

这将改变用户提供的字体到android项目或应用程序。

答案 1 :(得分:1)

试试这个

  • 您必须在onDraw
  • 中添加这些行
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);
        }
}