如何更改安卓键盘按键字体?
如何更改我在 android (Eclipse) 中编写的键盘按键的默认字体?
谢谢
How can I change the default font for keys of keyboard I am writing in android (Eclipse)?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
一种解决方案是使用 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)
topaint.setTypeface(my font)
and you must add attrs.xml to your project.我找到了答案:实现了 onDraw...
I found an answer : Implemented onDraw...
如果您正在考虑使用外部 .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.
嗯,这是一个非常广泛的问题。我可以告诉你如何设置不同的字体;如何将其应用到键盘应用程序中取决于您。
将字体(.ttf 或 .otf)放入您的资源文件夹中,并使用以下代码(假设字体名为“myfont.ttf”并且 TextView 的 id 为“key”):
提醒:不要忘记检查您正在使用的字体的许可证。大多数不允许在没有补偿的情况下重新分配。您可以使用的一种免费许可字体是 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"):
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.