对 Android 的印地语支持 - 文本显示为框 [英] Hindi language support for Android - text shows up as boxes

查看:11
本文介绍了对 Android 的印地语支持 - 文本显示为框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

eclipse模拟器中的android是否支持印地语字体?我看到方形盒子喜欢☐ 代替字符 अ आ इ ई उ ऊ 在模拟器和 Unicode 或 UTF8 兼容印地语网站.有解决问题的设置吗?

Does android in eclipse emulator support hindi fonts? I see Square boxes like ☐ instead of characters अ आ इ ई उ ऊ on Emulator and on Unicode or UTF8 compliant Hindi websites. Any settings for solving the issue?

推荐答案

这可能对你有帮助

通过将 .ttf 文件复制到项目的资产"文件夹中来使用自定义 TrueType 字体.

use custom TrueType fonts by copying the .ttf file into your projects's 'assets' folder.

然后在你的应用程序中你可以使用这样的字体;

Then in your application you can use the font like this;

final Typeface customF = Typeface.createFromAsset(this.getAssets(), "custom.ttf");
final TextView textV = (TextView) findViewById(...);
textV.setTypeface(customF);

这篇关于对 Android 的印地语支持 - 文本显示为框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆