android自定义view之实现日历界面实例
现在网上有很多自定义view实现日历的demo,今天讲一讲如何自己实现这个自定义view。
看一下最终效果图:
在这个自定义view中,我使用了各种奇技淫巧的方法来实现这个日历,真是费尽心思。废话少说,开始进坑。
界面分析
头部是一个textview,显示年份和月份,然后下边一行是星期几,这两行可以固定住,不随月份切换而进出屏幕。
再下边就是我们自定义view 的主角,每个月的天数。目前规定是星期日为每星期第一天。上个月的天数填充满第一行,下个月的前几天填充完最后一行,颜色设置为灰色,本月日期中的周一至周五设置为红色,周六周日设置为青色,特殊日期设置为绿色,并且在右上角填充特殊标识符,用四分之三的圆弧包裹(上个月和下个月的日期没有)。
此处还有个小细节,每月的总行数会不断改变,但是view的总高度并未改变,所以视觉效果会不一样。
构造方法
public mycalendar(context context) { super(context); } public mycalendar(context context, @nullable attributeset attrs) { super(context, attrs); }
主要是实现上面两个构造方法,第一个是用来在java代码中使用的,第二个是用来在xml布局文件中使用的。
暴露的接口
目前接口共有下面几个,setdate(customdate customdate),setweekendhighlight(boolean b),setspecialday(int[] ints)
其中第一个是必须要设置的,否则是不会显示任何东西,第二个设置的是否周末高亮,第三个设置的是特殊显示的日期,第四个是设置是否可以点击前一个月或者后一个月的日期,默认为不设置,后期可以根据自己需求增加其他接口。
/** * 暴露接口,设置日期 * * @param customdate */ public void setdate(customdate customdate) { log.d(tag, customdate.tostring()); this.date = customdate; firstdayofweek = date.getfirstdayofweek(); log.d(tag, (date.getmonth() + 1) + "月1号是星期" + firstdayofweek); lastdayofweek = date.getlastdayofweek(); linecount = calculatelinenum() + 1; lastmonthtotaldays = date.getlastmonthdays(); } /** * 暴露接口,设置是否周末高亮 * * @param b */ public void setweekendhighlight(boolean b) { this.weekendhighlight = b; } public void setspecialday(int[] ints) { this.specialdays = ints; } /** * 暴露接口,设置是否可以点击前一个月和后一个月的日期 * * @param b */ public void setcanclicknextorpremonth(boolean b) { this.canclicknextorpremonth = b; }
在这里说明一下计算显示行数的方法,首先要注意我们获取的星期数与实际的星期几会有一个增加一天的问题,也就是当前是星期4,那么你获取的int将会是5.
/** * 获得应该设置为多少行 * * @return */ private int calculatelinenum() { monthdaysum = date.gettotaldayofmonth(); return (firstdayofweek - 1 + monthdaysum) / 7; }
我们将第一天是星期几减去一后加上这个月总共多少天,就可以获得最后一天是在什么位置,然后除以七取商的整数部分,然后在进一法即可获得应该显示多少行。
onsizechanged方法
onsizechanged方法中已经可以获得显示的尺寸了,此时我们需要做一些工作:
protected void onsizechanged(int w, int h, int oldw, int oldh) { super.onsizechanged(w, h, oldw, oldh); this.viewwidth = w; this.viewheight = h; log.d(tag, "onsizechanged" + w + h); cutgrid(); init(); setcellday(); }
首先是将宽和高引入进来,方便后边使用。
cutgrid()方法是将区域分割为行x列的格式。
init()方法初始化了一些画笔。
setcellday()方法将每月的天对应过到坐标上。
首先看一下cutgrid()方法:
/** * 切分为每天 */ private void cutgrid() { cellwidth = (float) viewwidth / row_count; cellheight = (float) viewheight / linecount; this.radius = math.min(cellwidth / 2, cellheight / 2); for (int i = 0; i < linecount; i++) { for (int j = 0; j < row_count; j++) { points.add(new pointf(cellwidth * j + cellwidth / 2, cellheight * i + cellheight / 2)); } } }
cellwidth是每天的宽度,其中row_count是一个常量7,表示每周7天;cellheight是每行的高度,linecount是一个变量,需要我们根据日期计算,后边会说到;radius是我们绘制区域的半径,这个值是我们取宽度和高度中较小的值的一半。然后我们将每个方格中心坐标点利用双重循环放入一个list<point> points中。
整个view被分割为如上的形状。
下面来看一下init()方法:
private void init() { circlepaint = new paint(); circlepaint.setstyle(paint.style.stroke); circlepaint.setantialias(true); circlepaint.setcolor(color.blue); textpaint = new paint(); textpaint.setantialias(true); textpaint.setcolor(color.black); textpaint.settextsize(radius / 2); selectpaint = new paint(); selectpaint.setcolor(color.yellow); selectpaint.setalpha(10); selectpaint.setantialias(true); selectpaint.setstyle(paint.style.fill); selecttextpaint = new paint(); selecttextpaint.setcolor(color.white); selecttextpaint.setantialias(true); selecttextpaint.settextsize(radius / 2); selecttextpaint.setstyle(paint.style.fill); }
基本都是画笔工具。
然后是setalldays()方法:
/** * 设置总共显示多少天,每天的状态 */ private void setcellday() { celldays = new cellday[linecount * row_count]; for (int i = 0, length = celldays.length; i < length; i++) { celldays[i] = new cellday(); celldays[i].setpointx(points.get(i).x); celldays[i].setpointy(points.get(i).y); if (firstdayofweek > 1 && i < firstdayofweek - 1) { celldays[i].setdaystate(daystate.lastmonth); celldays[i].setdate(string.valueof(lastmonthtotaldays - firstdayofweek + i + 2)); celldays[i].setcustomdate(new customdate( date.getyear(), date.getmonth() - 1, lastmonthtotaldays - firstdayofweek + i + 2)); } if (i >= firstdayofweek - 1 && i < monthdaysum + firstdayofweek - 1) { celldays[i].setdaystate(currentmonth); celldays[i].setdate(string.valueof(i + 2 - firstdayofweek)); celldays[i].setcustomdate(new customdate( date.getyear(), date.getmonth(), i - firstdayofweek + 2)); //设置周末高亮 if (weekendhighlight) { if (i % 7 == 0 || i % 7 == 6) { celldays[i].setdaystate(weekend); } } } if (i >= monthdaysum + firstdayofweek - 1) { celldays[i].setdaystate(nextmonth); celldays[i].setdate(string.valueof(i - monthdaysum - firstdayofweek + 2)); celldays[i].setcustomdate(new customdate( date.getyear(), date.getmonth() + 1, i - monthdaysum - firstdayofweek + 2)); } for (int j = 0, s = specialdays.length; j < s; j++) { if (specialdays[j] + firstdayofweek - 2 == i) { celldays[i].setdaystate(specialday); } } } }
在这里我们用到了一个自定的类-cellday。
cellday有以下几个字段
private string date; private daystate daystate; private customdate customdate; private float pointx; private float pointy; private boolean isselected;
1、string date表示当前的日期。
2、daystate是一个美剧类型,定义了天的状态值。
- lastmonth:上个月的日期
- currentmonth:本月的日期
- nextmonth: 下个月的日期
- currentday: 今天的日期
- weekend:周末的日期
- specialday:用户自定义的可以设置状态的日期
其中可以设置多种状态,用法和specialday基本一样。
- cusomedate是我们自己定义的一个工具类,包含项目中需要用到的一系列方法。
- pointx是横坐标。
- pointy是纵坐标。
- isselceted表示有没有被选中。
customdate工具
public class customdate { private calendar calendar = calendar.getinstance(timezone.gettimezone("gmt+8")); private int year; private int month; private int day; private int dayofweek; public customdate() { } /** * 获取当前的日期 * @return */ public customdate getcurrentdate() { this.year = calendar.get(calendar.year); this.month = calendar.get(calendar.month); this.day = calendar.get(calendar.day_of_month); this.dayofweek = calendar.get(calendar.day_of_week); return new customdate(year, month, day); } public customdate(int year, int month, int day) { this.year = year; this.month = month; this.day = day; calendar.set(year, month, day); dayofweek = calendar.get(calendar.day_of_week); } /** * 获取上个月的天数 * @return */ public int getlastmonthdays() { return this.getdaysofmonth(this.year, this.month - 1); } /** * 获取第一天是星期几 * * @return */ public int getfirstdayofweek() { calendar.set(this.year, this.month, 1); return calendar.get(calendar.day_of_week); } /** * 获取最后一天是星期几 * * @return */ public int getlastdayofweek() { calendar.set(this.year, this.month, gettotaldayofmonth()); return calendar.get(calendar.day_of_week); } /** * 获取这个月总共的天数 * @return */ public int gettotaldayofmonth() { return this.getdaysofmonth(year, month); } public int gettotalweekofmonth() { return calendar.getmaximum(calendar.week_of_month); } public int getyear() { return year; } public void setyear(int year) { this.year = year; } public int getmonth() { return month; } public void setmonth(int month) { this.month = month; } public int getday() { return day; } public void setday(int day) { this.day = day; } public int getdayofweek() { return dayofweek; } public void setdayofweek(int dayofweek) { this.dayofweek = dayofweek; } @override public string tostring() { return "customdate{" + "year=" + year + ", month=" + (getmonth() + 1) + ", day=" + day + ", dayofweek=" + dayofweek + '}'; } /** * 获取年中每月的天数 * @param year * @param month * @return */ private int getdaysofmonth(int year, int month) { if (month > 11) { month = 0; year += 1; } else if (month < 0) { month = 11; year -= 1; } int[] arr = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; int daysofmonth = 0; if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) { arr[1] = 29; } daysofmonth = arr[month]; return daysofmonth; } }
注释中对每个方法的说明已经非常清晰了。
int getlastmonthdays()
获取上个月的天数是用来计算上个月最后一天是星期几,然后以此推导出上个月在本月中显示的天数和对应的星期。
getfirstdayofweek()
获取本月第一天是星期几,然后排序本月的天数与对应的星期。
int gettotaldayofmonth()
获取本月总共多少天。配合第一天是星期几用来计算总共分为几行,也就是确定linenumber。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 互联网推广热词怎么找?