阿拉伯数字显示错误

时间:2012-11-25 15:55:09

标签: android arabic

我正在使用阿拉伯语文本。 我用阿拉伯语重塑器, 重塑者通常不显示数字。 你能帮我们解决这个问题吗? enter image description here

我使用this reshaper

            View v = inflater.inflate(R.layout.ebookfragment, container,false);
            Typeface typeface = Typeface.createFromAsset(getActivity().getAssets(),"pdms_islamicfont1.2.ttf");
            tv = (TextView ) v.findViewById(R.id.tv);
            tv.setTypeface(typeface);

            tv.setBackgroundColor(Color.WHITE);
    //        tv.setGravity(Gravity.RIGHT);
            tv.setTextColor(Color.BLACK);
            tv.setTextSize(textSize);

            Spanned spanned = Html.fromHtml("<p> ٣١  عَنْ أَبِي هُرَيْرَةَ  </p>");
            tv.setText(ArabicUtilities.reshape(spanned.toString()));

1 个答案:

答案 0 :(得分:4)

我发现了这个:

String filename = 123.doc
String message = string1 + "\u202A" + fileName + "\u202C" + string2;

其中string1和string2是RtL语言中的字符串。