I am trying to add leading white space (spaces) to the string displayed in my TextView when I use setText(), but TextView just removes them from the String.
For example, say I want to display " 328". I call textView.setText(" 328"), but what is displayed in the TextView is "328". The TextView will always display:
328
Instead of:
328
Please keep in mind that I must solve this while using .setText() and not through resources. I have also tried prepending it with "\u00A0","\u0020", and " " but they don't work.