Arabic font not displayed on Samsung devices

I have a problem with Arabic fonts, I have some Arabic fonts, and I use them from assets, and this displays correctly on Non Samsung devices. But when I run on the Samsung Android device, it will show broken alphabets in Arabic!

How can I solve this problem? I want to display Arabic correctly on all devices.

here is my font installation code

TextView tv=(TextView)findViewById(R.id.custom); Typeface face=Typeface.createFromAsset(getAssets(), "fonts/arabic.ttf"); tv.setTypeface(face); 
+4
source share
1 answer

just follow this link: hope this helps you. http://developer.android.com/design/style/typography.html

+1
source

All Articles