1

我正在开发一个以阿拉伯语显示字母的应用程序。因此,一旦我以正常的单个形式显示了所有字母;我想以各自的形式(开始、中间、结束)将它们连接在一起。

我怎样才能做到这一点 ?

有任何想法吗 ?

4

1 回答 1

1

UTF-8 原生支持阿拉伯语。例如:

<Alloy>
    <Window layout="horizontal" horizontalWrap="true" backgroundColor="white">
        <Button width="20%" height="30%" title="Name"/>
        <Button width="20%" height="30%" title="Last"/>
        <Button width="20%" height="30%" title="Middle"/>
        <Button width="20%" height="30%" title="First"/>
        <Button width="20%" height="30%" title="Indep."/>
        
        <Button width="20%" height="30%" title="alif"/>
        <Button width="20%" height="30%" title="ـا"/>
        <Button width="20%" height="30%" title="ـاـ"/>
        <Button width="20%" height="30%" title="اـ"/>
        <Button width="20%" height="30%" title="ا"/>
        
        <Button width="100%" height="30%" title="the school is new:  المدرسة جديدة"/>
    </Window>
</Alloy>

这是结果的屏幕截图:

阿拉伯语刻字截图

所以...您可能需要将字母表编译成单个文档(将 sre 保存为 UTF-8 编码),然后自行加载/渲染该文件。

于 2013-07-02T01:44:55.680 回答