我正在使用阿拉伯语文本。 我用阿拉伯语重塑器, 重塑者通常不显示数字。 你能帮我们解决这个问题吗?
我使用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()));
答案 0 :(得分:4)
我发现了这个:
String filename = 123.doc
String message = string1 + "\u202A" + fileName + "\u202C" + string2;
其中string1和string2是RtL语言中的字符串。