I just created a simple java-me program for my cellphone with Netbeans 7.1
I have a splash screen and then a list with 4 items.
I want to align my list items from right to left RTL
Is there a way do do this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re using the native midp widgets – you can’t rely on having RTL support, since it’s up to the device manufacturer to implement, if at all.
So you need to implement your UI on top of Canvas.
But there are widgets libraries that you can use to help you with that.
I personally recommend LWUIT for RTL work, since it was designed with RTL in mind – It was developed and still maintained in Israel, and many projects I know of with great RTL implementations use it.
And as a side bonus – your code will be easily portable to Android and ios (It’s the library used by Codename One).