私はアンドロイド(ICS、Jellybean)のアプリケーションを開発しています。アラビア語が正しく表示されません。
問題を見てください。
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);
アラビア語フォントも使用しています。多くのフォントを試しましたが、問題は解決しません。
テキストビューはこれを行う正しい方法ですか?