在Android ICS和Jellybean上的阿拉伯语渲染

时间:2013-05-05 06:37:37

标签: android textview rendering arabic

我正在开发一个应用程序是android(ICS,Jellybean)。阿拉伯语没有正确呈现。

看一下这个问题。

enter image description here

我正在使用TextView。这是我的代码。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Text"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="right">
<TextView
    android:id="@+id/Text1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="#00000000"
    android:textSize="30dip" />

Typeface tf = Typeface.CreateFromAsset(context.Assets, "Fonts/Al Qalam Quran Majeed.ttf");

view.FindViewById<TextView>(Resource.Id.Text1).SetTypeface(tf, TypefaceStyle.Normal);

我也在使用阿拉伯语字体。我尝试了很多字体,但问题不会消失。

文本查看正确的方法吗?

0 个答案:

没有答案