如何在Textview上显示韩文文本?
我想在我的 TextView 中显示韩文文本。它应该显示正确的韩语,但它显示的是垃圾字符。有人知道如何解决这个问题吗?
提前致谢。
I want to display Korean text in my TextView. It should display proper Korean language but instead it's displaying junk chars. Any one know how to fix this?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Android使用Unicode字体,因此可以正常显示韩文字符。
您可以尝试更改项目的文本编码,因为这不是 android 问题。
Android use a Unicode font, so it can display Korean character normally.
You can try change your text encoding of your project because its not android problem.
您需要的是将韩文字体加载到 TextView,例如 Batang、BatangChe、Dotum..
这与您的问题类似:在 TextView 中显示所有 Unicode 字符
what you need is to load a korean font to the TextView, like Batang, BatangChe, Dotum..
This is similar question to yours: Display all Unicode chars in TextView
您需要 True Type 字体 (ttf) 文件来支持看起来的语言。将韩文字体文件复制并粘贴到您的资产文件夹中,然后尝试此代码。
You require a True Type font(ttf) file to support the language it seems. copy and paste the korean font file into your assets folder and try this code.