对 Android 的印地语支持 - 文本显示为框

Hindi language support for Android - text shows up as boxes(对 Android 的印地语支持 - 文本显示为框)
本文介绍了对 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 的印地语支持 - 文本显示为框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)
Crash on Google Play Pre-Launch Report: java.lang.NoSuchMethodError(Google Play发布前崩溃报告:java.lang.NoSuchMethodError)