I would like to display white spaces before and after text on a Button. For example :
" A "
However when I set the text above to a Button :
myButton.setText ( " A " );
The text is trimmed (only trailing spaces are removed), and the following text is displayed :
" A"
How can I display the text without having it trimmed ?