[android-developers] Re: make components right to left

2012-03-13 Thread Ali Chousein
Well, that would make everything left-to-right... not necessarily right to left. Ooops, I didn't pay that much of attention to the direction in the question :-) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Re: make components right to left

2012-03-13 Thread Zsolt Vasvari
It appears that if your text is in a RTL language, ICS will sometimes render it RTL without you have to do anything special. This happens, for example, in ListViews. In my app, I load some localized data and when I load Arabic, the text appears RTL, so it works under at least some

[android-developers] Re: make components right to left

2012-03-12 Thread Ali Chousein
right to left Try LinearLayout and set its orientation to horizontal (e.g. android:orientation=horizontal) Sorry, didn't understand your second question. - Ali Chousein http://www.codeproject.com/KB/android/PayGol-Android.aspx

Re: [android-developers] Re: make components right to left

2012-03-12 Thread Justin Anderson
* Try LinearLayout and set its orientation to horizontal (e.g. android:orientation=horizontal)* Well, that would make everything left-to-right... not necessarily right to left. This is presumably for supporting locales that read from right to left? But I wasn't able to determine if that was the

Re: [android-developers] Re: make components right to left

2012-03-12 Thread Alimooghashang
Hi i have making a Persian android application as you know , my language is RTL all i need is to show every thing right to left, for example textview, inputbox,... and also i need the digits in them, be in unicode character, thanks -- You received this message because you are subscribed to

Re: [android-developers] Re: make components right to left

2012-03-12 Thread Romain Guy
Hi, Android does not currently support RTL layouts. We have started the work to add proper support for RTL layouts in ICS (if you browse the source code you can find early implementations and APIs) but there is no ETA at this time for when this will become a public SDK API. On Mon, Mar 12, 2012

Re: [android-developers] Re: make components right to left

2012-03-12 Thread Alimooghashang
thanks but what about SMS messages!? they are RTL! also i can use my own keyboard, and own language! On Tue, Mar 13, 2012 at 1:23 AM, Romain Guy romain...@android.com wrote: Hi, Android does not currently support RTL layouts. We have started the work to add proper support for RTL layouts in