我正在开发一个字母以阿拉伯语显示的应用。所以,一旦我以正常的个人形式显示所有字母表;我想以各自的形式(开始,中间,结束)加入他们。
我该怎么做?
有什么想法吗?
答案 0 :(得分: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>
以下是结果的屏幕截图:
所以......你可能需要将字母表编译成单个文档(make sre以保存为UTF-8编码),然后加载/渲染该文件本身。