Warning: file_get_contents(/data/phpspider/zhask/data//catemap/4/macos/10.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Utf 8 钛制阿拉伯语_Utf 8_Localization_Titanium_Arabic - Fatal编程技术网

Utf 8 钛制阿拉伯语

Utf 8 钛制阿拉伯语,utf-8,localization,titanium,arabic,Utf 8,Localization,Titanium,Arabic,我正在开发一个应用程序,其中字母以阿拉伯语显示。所以一旦我以正常的形式显示了所有的字母表;我想以各自的形式(开始、中间、结束)将它们连接在一起 我该怎么做 有什么想法吗?UTF-8本机支持阿拉伯语。例如: <Alloy> <Window layout="horizontal" horizontalWrap="true" backgroundColor="white"> <Button

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

我该怎么做


有什么想法吗?

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编码),然后加载/呈现该文件本身。

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编码),然后加载/呈现该文件本身。

但在我这边,用户单击其中一个表单,然后将其添加到文本字段中。例如:以正常形式添加起始字母后,添加的第二个字母应为中间形式,并应以其各自的方式连接到前一个字母。您能显示您尝试的代码吗?这听起来就像你要做的只是添加到文本字段,然后有一个知道要添加哪个表单的变量。但在我这边,用户单击其中一个表单,然后将其添加到文本字段。例如:以正常形式添加起始字母后,添加的第二个字母应为中间形式,并应以其各自的方式连接到前一个字母。您能显示您尝试的代码吗?这听起来就像你要做的只是添加到文本字段,然后有一个知道要添加哪个表单的变量。