Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.