Is there a way to format a Month without leading zeros in Java/Android?
I got this:
mTitleText.setText(String.format("Pick Date Time: %tm/%te/%tY %tk:%02d",
mTime,mTime,mTime,mTime,minute));
And it returns 02/12/2012 13:23 when I want it to return 2/12/2012 13:23.