Android 应用程序中的希伯来语 - 英语布局选择
在 Android 应用程序中提供希伯来语/英语布局之间切换功能的最佳方式是什么?
这是常见的做法吗?或者通常只是提供希伯来语或英语应用程序。 我知道有能力使用本地化 - 但希伯来语是否支持这一点? 另外,我的应用程序也应该适用于 iPhone,并且我想保持不变。
代码中应该怎么做呢?在哪里放置布局?
约阿夫
What is the best way to provide the ability to switch between hebrew/english layouts in Android applications?
Is it commonly done - or usually just providing hebrew or english applications.
I know there is abikty to use localiztions - but is there Hebrew support for this?
Also my application should be for iPhone as well and I want to keep it the same.
How should do it in the code? Where to place the layouts?
Yoav
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于方向(从右到左),您需要:
android.text.Layout.Direction
然后可以通过包含 TextView 从应用程序中的资源调用希伯来语 TrueTypefont。
您可以使用一个用于希伯来语的类和另一个用于英语的类,而不是推送 2 个布局文件...
或者您可以将文本推送到字符串值文件以获得最高的清洁度
如果它是可以从资源 txt 文件调用的文本块(对于祈祷实用)
这完全取决于您有多少文本。
For orientation (right-to-left) you need:
android.text.Layout.Direction
A hebrew TrueTypefont can then be called from a resource in your app by including TextView.
Instead of pushing 2 layout files you could use a class for hebrew and another for english...
or you could push the text to string values file for highest cleanliness
If it is a block of text that could be called from resource txt file (practical for prayers)
It all depends on how much text you have.