Possible Duplicate:
Enforcing spaces in string resources
This is the strings.xml file I use for my Android project.
........
........
<string name="bcount">Block Count\t\t\t: </string>
<string name="fbcount">Free Blocks\t\t\t: </string>
<string name="blsiz">Block Size\t\t\t: </string>
<string name="newvfs">New VFS</string>
<string name="mknewfold">Making new folder </string>
<string name="creating">Creating </string>
........
........
The problem with this is that whitespaces towards end of strings like "Block Count\t\t\t: "
disappear. Only "Block Count\t\t\t:"
is returned by java. How to fix this?