Skip to content

Commit f31bb6e

Browse files
committedOct 14, 2014
Gaps for overlapping events added
1 parent 90f5066 commit f31bb6e

File tree

5 files changed

+50
-7
lines changed

5 files changed

+50
-7
lines changed
 

‎README.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Features
2020
Who uses it
2121
---------------
2222

23-
* [Series Addict](http://seriesaddict.april-shower.com) (still under development)
23+
* [Series Addict](https://play.google.com/store/apps/details?id=com.alamkanak.seriesaddict)
2424

2525
Usage
2626
---------
@@ -32,14 +32,14 @@ Usage
3232
<dependency>
3333
<groupId>com.github.alamkanak</groupId>
3434
<artifactId>android-week-view</artifactId>
35-
<version>1.1.2</version>
35+
<version>1.1.3</version>
3636
<type>aar</type>
3737
</dependency>
3838
```
3939
* Grab via gradle
4040

4141
```groovy
42-
compile 'com.github.alamkanak:android-week-view:1.1.2'
42+
compile 'com.github.alamkanak:android-week-view:1.1.3'
4343
```
4444
2. Add WeekView in your xml layout.
4545

@@ -100,6 +100,7 @@ You can customize the look of the `WeekView` in xml. Use the following attribute
100100
- `columnGap`
101101
- `dayBackgroundColor`
102102
- `dayNameLength`
103+
- `eventMarginVertical`
103104
- `eventPadding`
104105
- `eventTextColor`
105106
- `eventTextSize`
@@ -113,6 +114,7 @@ You can customize the look of the `WeekView` in xml. Use the following attribute
113114
- `hourSeparatorColor`
114115
- `hourSeparatorHeight`
115116
- `noOfVisibleDays`
117+
- `overlappingEventGap`
116118
- `textSize`
117119
- `todayBackgroundColor`
118120
- `todayHeaderTextColor`
@@ -129,7 +131,11 @@ To do
129131
* Show events that expand multiple days properly
130132

131133
Changelog
132-
-------
134+
---------
135+
136+
**Version 1.1.3**
137+
138+
* Margins support added for overlapping events
133139

134140
**Version 1.1.2**
135141

‎gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.1.2
1+
VERSION_NAME=1.1.3
22
GROUP=com.github.alamkanak
33

44
POM_DESCRIPTION=Dissect layout traversals on Android.

‎images/screen-shot.png

4.89 KB
Loading

‎library/src/main/java/com/alamkanak/weekview/WeekView.java

+37-2
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ public class WeekView extends View {
9292
private int mDefaultEventColor;
9393
private boolean mIsFirstDraw = true;
9494
private int mDayNameLength = LENGTH_LONG;
95+
private int mOverlappingEventGap = 0;
96+
private int mEventMarginVertical = 0;
9597

9698
// Listeners.
9799
private EventClickListener mEventClickListener;
@@ -216,6 +218,8 @@ public WeekView(Context context, AttributeSet attrs, int defStyleAttr) {
216218
mEventPadding = a.getDimensionPixelSize(R.styleable.WeekView_hourSeparatorHeight, mEventPadding);
217219
mHeaderColumnBackgroundColor = a.getColor(R.styleable.WeekView_headerColumnBackground, mHeaderColumnBackgroundColor);
218220
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);
219223
} finally {
220224
a.recycle();
221225
}
@@ -450,19 +454,23 @@ private void drawEvents(Calendar date, float startFromPixel, Canvas canvas) {
450454
if (isSameDay(mEventRects.get(i).event.getStartTime(), date)) {
451455

452456
// 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;
454458
float originalTop = top;
455459
if (top < mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight/2)
456460
top = mHeaderTextHeight + mHeaderRowPadding * 2 + mHeaderMarginBottom + mTimeTextHeight/2;
457461

458462
// Calculate bottom.
459463
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;
461465

462466
// Calculate left and right.
463467
float left = startFromPixel + mEventRects.get(i).left * mWidthPerDay;
468+
if (left != startFromPixel)
469+
left += mOverlappingEventGap;
464470
float originalLeft = left;
465471
float right = left + mEventRects.get(i).width * mWidthPerDay;
472+
if (right != startFromPixel + mWidthPerDay)
473+
right -= mOverlappingEventGap;
466474
if (left < mHeaderColumnWidth) left = mHeaderColumnWidth;
467475

468476
// Draw the event and the event name on top of it.
@@ -1031,6 +1039,33 @@ public void setDayNameLength(int length) {
10311039
this.mDayNameLength = length;
10321040
}
10331041

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+
10341069
/////////////////////////////////////////////////////////////////
10351070
//
10361071
// Functions related to scrolling.

‎library/src/main/res/values/attrs.xml

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
<enum name="length_short" value="1"/>
3232
<enum name="length_long" value="2"/>
3333
</attr>
34+
<attr name="overlappingEventGap" format="dimension"/>
35+
<attr name="eventMarginVertical" format="dimension"/>
3436

3537
</declare-styleable>
3638
</resources>

0 commit comments

Comments
 (0)
Please sign in to comment.