I have Hours, Minutes and Seconds stored in long variables. Pretend that the current values of these are:
long seconds = 30;
long minutes = 0
long hours = 0;
When I convert these to strings and print them:
Long.toString(Hours)+":"+Long.toString(Minutes)+":"+Long.toString(Seconds)
The output looks like
0:0:30
I want:
00:00:30
I'm assuming this should be straight forward but I cant work it out..