I'm using this code to set the id of any button:
String s = "" + i + j;
int getal = Integer.parseInt(s);
button.setId(getal);
Variables "i" and "j" are always from 0 tot 9. A single digit. However, if "i" is 0 then the parseInt() method deletes it, I think.
For example: when i=0 and j=6 the outcome of variable "getal" wil be 6 and not 06. I need it to be 06. Does somebody maybe know an other way of converting strings to ints?
06or00000006or6are the same thing (unless you mean octal, in which case your input doesn't work - octal is limited to0-7). – Mat Jan 22 at 14:33