I would like to display a String with my app name and it’s current version.
The app name is in hebrew, for some when I combine hebrew text with numeric value, the numeric value is flipped.
versionTextView.setText("אפליקציה גרסה "+this.getResources().getString(R.string.app_version));
for example: app version is 1.0, being display as 0.1 on emulator.
Sounds like a bug in the Android bidi algorithm. Try adding left-to-right marks around the numbers:
(If this works, you may be able to eliminate the second one.)