0

A complete document is given by Android developer website for Internationalization in android. But till I have some question on this.

Some language starts there word from left to right, top to bottom.

Some language starts from right to left, bottom to top.

Some language moves vertically means from top to bottom one line again top to bottom second line and so on.

Question: 1. How to support these languages? Because in Android(Edit Text) it allow to write from left to write and from top to bottom.

  1. Some of the String I am storing in Sqlite database. So this is possible to store all the language in Sqlite database?
Vinit ...
  • 1,409
  • 10
  • 37
  • 66

1 Answers1

0

Question 1:
You can use this android:textDirection="anyRtl"

Please check this post for more info.

Community
  • 1
  • 1
encrypt
  • 77
  • 1
  • 11
  • ...thanks for reply..How I will store different language characters in SQLITE database. – Vinit ... Jun 30 '15 at 10:44
  • I'm not sure exactly how, because I have no experience in SQLITE, but I think that you must change character encoding in some which support characters you need. – encrypt Jun 30 '15 at 10:48