guojunustb / sample-of-Android-week-view

This is a sample of android week view,Thanks the author of android week view ,The WeekHeaderView is based on android week view .This project contains two view ,the header view and day view .Please watch the rederings
96 stars 27 forks source link

有个bug向您反馈 #1

Open superit opened 7 years ago

superit commented 7 years ago

在今天的视图里,您写的有个红色的横线标注了当前的时间,这个红色的时间线标注的不准确哦。

hemantsb commented 4 years ago

There is a typo in calculating top. WeekDayView Old : float top = (mHourHeight * 24 / 1440) * (60 * now.get(Calendar.HOUR_OF_DAY) + now.get(Calendar.MINUTE)) + mTimeTextHeight + mCurrentOrigin.y;

Change it to: float top = (mHourHeight * (float)24 / 1440) * (60 * now.get(Calendar.HOUR_OF_DAY) + now.get(Calendar.MINUTE)) + mTimeTextHeight + mCurrentOrigin.y;