12 2011 档案

摘要:最近在做项目中,需要用到一个时间显示的控件,由于android自身DigitalClock只能显示时间,不能显示日期,所以自己就动手对DigitalClock做了一个小小的改造android自带的效果如下:改造后的效果: 1 public class TimeWidget extends TextView { 2 3 Calendar mCalendar; 4 private final static String m12 = "h:mm:ss"; 5 private final static String m24 = "k:mm:ss"; 6 p... 阅读全文
posted @ 2011-12-12 12:00 YunLin 阅读(1697) 评论(3) 推荐(1)
摘要:1 public class PagePoint extends View { 2 3 private String TAG = "PagePoint"; 4 Paint p; 5 int totalPage;//总页面数 6 int currentPage; 7 Bitmap bmp, bmp2; 8 int screenW; 9 int screenH;10 boolean flag = false;11 12 int ws;//图片的宽13 int dw = 10;//点之间的间距14 int t... 阅读全文
posted @ 2011-12-10 11:07 YunLin 阅读(1452) 评论(1) 推荐(2)