Just concatenate every string that you want to set in textView with "\u202B"
it just enforces the text to be RTL.
String textWhichIsLTR = "LTR or RTL text that you want to enforce to RTL";
String enforcedRTL = textWhichIsLTR + "\u202B";
fooTextView.setText(enforcedRTL);