Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I used Arabic text so, I want to write text from right to left so how i can write right to left text in android ?

Regards, Girish

share|improve this question
please would you tell me how can you write arabic on android emulator ? – Totti Jun 27 '12 at 4:34

3 Answers

Try with Bidi

share|improve this answer

you just need to set gravity for the edittext to the right.

<EditText android:layout_width="match_parent" android:layout_height="wrap_content"android:id="@+id/editText1" android:gravity="right">/EditText>
share|improve this answer
1  
This is still writing text left to right but aligned to the right. – Che Jami Oct 24 '11 at 10:36

It looks like this is only possible starting with jelly bean

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.