Android 应用程序中的希伯来语 - 英语布局选择

发布于 2024-12-07 15:13:01 字数 186 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

不必你懂 2024-12-14 15:13:01

对于方向(从右到左),您需要: 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文