我如何显示这样的时钟
我打算以这种方式显示时钟
我已经完成了时钟..并且我不知道如何获得像上图这样的小文本“PM”。
也适用于星期一星期二星期三......
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");
}
等等。
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 .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AM/PM 指示器应该只是一个单独的
TextView
,位于布局中适当的位置,具有较小的android:textSize
。至少,我会这么做。如果我误解了你的问题,我很抱歉,但很难确定你所说的“最小化文本”是什么意思。
The AM/PM indicator should just be a separate
TextView
, in an appropriate position in the layout, with a smallerandroid: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".