views:

105

answers:

1

I intend to show the clock in this way

alt text

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 .

+1  A: 

The AM/PM indicator should just be a separate TextView, in an appropriate position in the layout, with a smaller android:textSize. At least, that is how I would do it.

If I misunderstood your question, I apologize, but it is difficult to determine what you mean by "minimize the text".

CommonsWare
thank you =) .. then, how could I create that kind of Days (SUN,MON,TUE..)
mgpyone
@mgpyone: seven more `TextViews`, changing the transparency of the text color (and perhaps making the current one also bold).
CommonsWare