@@ -92,6 +92,8 @@ public class WeekView extends View {
92
92
private int mDefaultEventColor ;
93
93
private boolean mIsFirstDraw = true ;
94
94
private int mDayNameLength = LENGTH_LONG ;
95
+ private int mOverlappingEventGap = 0 ;
96
+ private int mEventMarginVertical = 0 ;
95
97
96
98
// Listeners.
97
99
private EventClickListener mEventClickListener ;
@@ -216,6 +218,8 @@ public WeekView(Context context, AttributeSet attrs, int defStyleAttr) {
216
218
mEventPadding = a .getDimensionPixelSize (R .styleable .WeekView_hourSeparatorHeight , mEventPadding );
217
219
mHeaderColumnBackgroundColor = a .getColor (R .styleable .WeekView_headerColumnBackground , mHeaderColumnBackgroundColor );
218
220
mDayNameLength = a .getInteger (R .styleable .WeekView_dayNameLength , mDayNameLength );
221
+ mOverlappingEventGap = a .getDimensionPixelSize (R .styleable .WeekView_overlappingEventGap , mOverlappingEventGap );
222
+ mEventMarginVertical = a .getDimensionPixelSize (R .styleable .WeekView_eventMarginVertical , mEventMarginVertical );
219
223
} finally {
220
224
a .recycle ();
221
225
}
@@ -450,19 +454,23 @@ private void drawEvents(Calendar date, float startFromPixel, Canvas canvas) {
450
454
if (isSameDay (mEventRects .get (i ).event .getStartTime (), date )) {
451
455
452
456
// Calculate top.
453
- float top = mHourHeight * 24 * mEventRects .get (i ).top / 1440 + mCurrentOrigin .y + mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight /2 ;
457
+ float top = mHourHeight * 24 * mEventRects .get (i ).top / 1440 + mCurrentOrigin .y + mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight /2 + mEventMarginVertical ;
454
458
float originalTop = top ;
455
459
if (top < mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight /2 )
456
460
top = mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight /2 ;
457
461
458
462
// Calculate bottom.
459
463
float bottom = mEventRects .get (i ).bottom ;
460
- bottom = mHourHeight * 24 * bottom / 1440 + mCurrentOrigin .y + mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight /2 ;
464
+ bottom = mHourHeight * 24 * bottom / 1440 + mCurrentOrigin .y + mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight /2 - mEventMarginVertical ;
461
465
462
466
// Calculate left and right.
463
467
float left = startFromPixel + mEventRects .get (i ).left * mWidthPerDay ;
468
+ if (left != startFromPixel )
469
+ left += mOverlappingEventGap ;
464
470
float originalLeft = left ;
465
471
float right = left + mEventRects .get (i ).width * mWidthPerDay ;
472
+ if (right != startFromPixel + mWidthPerDay )
473
+ right -= mOverlappingEventGap ;
466
474
if (left < mHeaderColumnWidth ) left = mHeaderColumnWidth ;
467
475
468
476
// Draw the event and the event name on top of it.
@@ -1031,6 +1039,33 @@ public void setDayNameLength(int length) {
1031
1039
this .mDayNameLength = length ;
1032
1040
}
1033
1041
1042
+ public int getOverlappingEventGap () {
1043
+ return mOverlappingEventGap ;
1044
+ }
1045
+
1046
+ /**
1047
+ * Set the gap between overlapping events.
1048
+ * @param overlappingEventGap The gap between overlapping events.
1049
+ */
1050
+ public void setOverlappingEventGap (int overlappingEventGap ) {
1051
+ this .mOverlappingEventGap = overlappingEventGap ;
1052
+ invalidate ();
1053
+ }
1054
+
1055
+ public int getEventMarginVertical () {
1056
+ return mEventMarginVertical ;
1057
+ }
1058
+
1059
+ /**
1060
+ * Set the top and bottom margin of the event. The event will release this margin from the top
1061
+ * and bottom edge. This margin is useful for differentiation consecutive events.
1062
+ * @param eventMarginVertical The top and bottom margin.
1063
+ */
1064
+ public void setEventMarginVertical (int eventMarginVertical ) {
1065
+ this .mEventMarginVertical = eventMarginVertical ;
1066
+ invalidate ();
1067
+ }
1068
+
1034
1069
/////////////////////////////////////////////////////////////////
1035
1070
//
1036
1071
// Functions related to scrolling.
0 commit comments