如何更改安卓键盘按键字体?

发布于 2024-10-15 00:14:59 字数 58 浏览 1 评论 0原文


如何更改我在 android (Eclipse) 中编写的键盘按键的默认字体?
谢谢

How can I change the default font for keys of keyboard I am writing in android (Eclipse)?
Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

独自唱情﹋歌 2024-10-22 00:14:59

一种解决方案是使用 keboardView.java< /a> 而不是 android.inputmethodservice.KeyboardView

您还需要将 paint.setTypeface(Typeface.DEFAULT_BOLD) 更改为 paint.setTypeface(my font) 并且必须添加 attrs.xml 到你的项目。

One solution is to use keboardView.java instead of android.inputmethodservice.KeyboardView.

You also need to change paint.setTypeface(Typeface.DEFAULT_BOLD) to paint.setTypeface(my font) and you must add attrs.xml to your project.

赤濁 2024-10-22 00:14:59

我找到了答案:实现了 onDraw...

override fun onDraw(canvas: Canvas) {
    // super.onDraw(canvas) // commented not to draw default keyboard
    if (!isInEditMode) {
        onBufferDraw()
        if (mBuffer != null)
            canvas.drawBitmap(mBuffer!!, 0f, 0f, null)
    }
}

private fun onBufferDraw() {
    if (mBuffer == null) {
        mBuffer = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888)
        mCanvas = Canvas(mBuffer!!)
        invalidateAllKeys()
    }
// the rest of the draw function ...

I found an answer : Implemented onDraw...

override fun onDraw(canvas: Canvas) {
    // super.onDraw(canvas) // commented not to draw default keyboard
    if (!isInEditMode) {
        onBufferDraw()
        if (mBuffer != null)
            canvas.drawBitmap(mBuffer!!, 0f, 0f, null)
    }
}

private fun onBufferDraw() {
    if (mBuffer == null) {
        mBuffer = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888)
        mCanvas = Canvas(mBuffer!!)
        invalidateAllKeys()
    }
// the rest of the draw function ...
半城柳色半声笛 2024-10-22 00:14:59

如果您正在考虑使用外部 .ttf 字体样式更改 android 自定义键盘按键字体样式的字体样式,那么您可以在链接中查看我的答案
更改按键标签字体样式的答案android自定义键盘以及更改整个android应用程序的字体样式

这个答案是由我个人验证的,所以你可以信任并检查这个。

if you are thinking to change the font style of android custom keyboard keys font style with an external .ttf font style then you can check my answer at a link
answer to change the font style of key label of android custom keyboard and also to change the font style throughout the android application

this answer is verified by me personally so you can trust and check this.

何以畏孤独 2024-10-22 00:14:59

嗯,这是一个非常广泛的问题。我可以告诉你如何设置不同的字体;如何将其应用到键盘应用程序中取决于您。

将字体(.ttf 或 .otf)放入您的资源文件夹中,并使用以下代码(假设字体名为“myfont.ttf”并且 TextView 的 id 为“key”):

Typeface myFont = Typeface.createFromAsset(getAssets(), "myfont.ttf");
TextView key = (TextView)findViewById(R.id.key);
key.setTypeface(myFont);

提醒:不要忘记检查您正在使用的字体的许可证。大多数不允许在没有补偿的情况下重新分配。您可以使用的一种免费许可字体是 Bitstream Vera Sans。

Well that's a very broad question. I can tell you how to set a different Typeface; how you work that into your keyboard application is up to you.

Place a font (.ttf or .otf) into your assets folder, and use the following code (assuming a font called "myfont.ttf" and a TextView with an id of "key"):

Typeface myFont = Typeface.createFromAsset(getAssets(), "myfont.ttf");
TextView key = (TextView)findViewById(R.id.key);
key.setTypeface(myFont);

Reminder: Don't forget to check the license for the font you are using. Most do not allow redistribution without compensation. One freely licensed font you can use is Bitstream Vera Sans.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文