/**
* Changes the content data to display the given month
* @param month
*/
public void setMonth(BtMonth month) {
Log.d("",month+"");
mMonth = month;
// Starts at Sunday
mMonthDisplay = new MonthDisplayHelper(mMonth.getYear(), mMonth.getMonth());
// number of cells is 7 times the row of the last day plus 1.
mNumCells = (mMonthDisplay.getRowOf(mMonthDisplay.getNumberOfDaysInMonth())+1) * 7;
}
DayGridAdapter.java 文件源码
java
阅读 29
收藏 0
点赞 0
评论 0
项目:BonetCalendarView
作者:
评论列表
文章目录