如何在Textview上显示韩文文本?

发布于 2024-12-07 17:59:20 字数 80 浏览 1 评论 0原文

我想在我的 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 技术交流群。

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

发布评论

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

评论(3

韶华倾负 2024-12-14 17:59:20

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.

怪我鬧 2024-12-14 17:59:20

您需要的是将韩文字体加载到 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

白日梦 2024-12-14 17:59:20

您需要 True Type 字体 (ttf) 文件来支持看起来的语言。将韩文字体文件复制并粘贴到您的资产文件夹中,然后尝试此代码。

    TextView text = (TextView) findViewById(R.id.textView1);
    Typeface font=Typeface.createFromAsset(activity.getAssets(), "fonts/yourfontname.ttf");
    holder.text.setTypeface(font);
    holder.text.setText(your_variable);

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.

    TextView text = (TextView) findViewById(R.id.textView1);
    Typeface font=Typeface.createFromAsset(activity.getAssets(), "fonts/yourfontname.ttf");
    holder.text.setTypeface(font);
    holder.text.setText(your_variable);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文