trying to set the layout elements to be RTL ordered
in 4.2 and above the line: layoutDirection=\"rtl\"
and in the manifest: android:supportsRtl=\"true
you can change your application language and solve this problem :
String languageToLoad = "en";
Locale locale = new Locale(languageToLoad);
Locale.setDefault(locale);
Configuration config = new Configuration();
config.locale = locale;
getBaseContext().getResources().updateConfiguration(config,
getBaseContext().getResources().getDisplayMetrics());