Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试为亚洲语言开发 Android IME(需要复杂的渲染,例如更改字形形式、重新排序字符顺序等)。在PC中,使用GTK、Pango、Graphite就足够了。在 Android 中,如何解决复杂文本语言的 Unicode 渲染问题。
提前致谢
您应该使用 Android 中提供的 Harfbuzz 堆栈。如果你在 PC 中的 Pango 中查看,有一个名为 Harfbuzz 的整形器组件。Android也应该存在。通过此堆栈传递任何亚洲语言即可完成工作(更改字形、重新排序等)
如果可以使用 NDK,可以同时使用 harfbuzz 和 freetype。没有任何依赖。否则,您可以坚持使用 Canvas 类提供的 Android drawText 方法。