I intend to show the clock in this way
I've done for the clock .. and I'm not sure how to get the small text "PM" like pic above.
also for the MON TUE WED ....
Calendar c = new GregorianCalendar();
if(c.get(Calendar.DAY_OF_WEEK) == Calendar.MONDAY){
System.out.println("MON");
} else if (c.get(Calendar.DAY_OF_WEEK) == Calendar.TUESDAY){
System.out.println("TUE");
}
and so forth .