Skip to content Skip to sidebar Skip to footer

What Is The Status Of Right To Left Languages On Android?

I need to create an application that has strings of many languages, including RTL (right-to-left ) languages. I want to know what is the current status of RTL (Right To Left) suppo

Solution 1:

Starting with android 4.2 , there is a little more info known about the special RTL attributes , and there is even an option to mirror layouts automatically for RTL languages .

More info can be found here .

Hopefully , they will add more information about how to use it , including some sample code and maybe even a support library on this matter.


EDIT: now they've added some more information of how to use the new RTL support:

http://android-developers.blogspot.co.il/2013/03/native-rtl-support-in-android-42.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+blogspot/hsDu+(Android+Developers+Blog)

I wonder though if the NIKUD ( Hebrew equivalent to vowels, except that they are optional and they are shown as dots instead of letters) works fine now .

EDIT: Now i've tested it, and it actually works really well (this is the first chapter of the holy bible) :

enter image description here

Solution 2:

  1. RTL support in android got some improvement in ICS. Before that in gingerbread, it was device specific e.g. each manufacturer/operator implemented their own BiDi solutions which caused some inconsistancy in applications

  2. its not needed. Good BiDi knows to mirror text view and canvas.draw text by initial letter utf8 code.. which let you worry less about BiDi and more about your app. Just don't force gravity and fill parent on text view

  3. No, there is qualifiers for Arabic/Hebrew etc.. where you can change practically everything. But good device implementation will not need anything but translations.

  4. that may happen if you have some old or device specific API installed. Therefore it won't work android-wide and cause compilation errors. But there are more reasons for it to happen...


Generally I advise you to ignore the BiDi issue for two reasons:

  1. people from countries that use rtl usually have devices which process it pretty good if not then its their problem.

  2. fixing your BiDi for one device will cause other devices not to comply. And that's something was done year ago.. and luckily developers finally stopped doing this mistake

Post a Comment for "What Is The Status Of Right To Left Languages On Android?"