I'm currently working on a calendar app. When the user selects the Day View, he needs to get a view similar to this example:
http://postimage.org/image/2sboxa22s/
I'm not really sure how to do this as the layout must be created at runtime because the number of events, their duration, how many are overlapping etc. is variable.
I've tried to find similar problems with no success.
My own two cents would be something like using a FrameLayout with a LinearLayout for the background (yellow with grey lines) and another FrameLayout on top of that in which the events would be placed. Only problem with this is that I'm not sure how to get the placement right nor how to figure out how to handle the places where events overlap.
UPDATE
Since there is no such thing as rowspan in the Android-framework (it is simply not supported by any layout or widget) I had to come up with my own solution.
In short terms I do the following:
- Add a spacer (empty calendar) until I reach the start of the first appointment.
- Add first appointment to a list and then add all appointments that overlaps any one appointment in the list to the list.
- When there are no more overlapping appointments its time to add the list to the calendar.
- I run through the appointments again to determine which can be in the same column and which cannot.
- Add the required number of columns filling empty space between appointments with empty layouts.
- Repeat untill all appointments of the day are added.
This solution builds on one thing: Fixed minimum height. This means I have a minimum height that an appointment must have. In my case its 60dp. I then find the shortest appointment to figure out a factor from which I can calculate the height of each appointment. E.g. if the shortest appointment i 15 minutes the factor would be 4.
This way an appointment in a column where the shortet appointment is 15 minutes, a 15 minutes long appointment would be 60dp and a 1 hour long appointment would be 240dp.
I don't consider this an optimal solution as it is not 100% dynamical, but it gets the job done so far.