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>

そして、ここに結果のスクリーンショットがあります:

アラビア文字のスクリーンショット

したがって...おそらく、アルファベットを単一のドキュメントにコンパイルし(UTF-8エンコーディングとして保存するように作成します)、そのファイル自体をロード/レンダリングする必要があります。

于 2013-07-02T01:44:55.680 に答える