Android Utililty Methods Int to Date Convert

List of utility methods to do Int to Date Convert

Description

The list of methods to do Int to Date Convert are organized into topic(s).

Method

StringwithZero(int aDay)
with Zero
String pattern = "%d";
if (aDay < 10)
    pattern = "0%d";
return String.format(pattern, aDay);