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:

  1. Add a spacer (empty calendar) until I reach the start of the first appointment.
  2. Add first appointment to a list and then add all appointments that overlaps any one appointment in the list to the list.
  3. When there are no more overlapping appointments its time to add the list to the calendar.
  4. I run through the appointments again to determine which can be in the same column and which cannot.
  5. Add the required number of columns filling empty space between appointments with empty layouts.
  6. 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.

link|improve this question

I can't understand why everyone as to reinvent the wheel. Of course most project aren't really open-source but this might be the 1000th calendar app... – ppuschmann Sep 13 '11 at 19:23
Even if this was calendar app nr. 1000 - the ones that are availible do not meet the requirements of the company I'm developing for. Hence I need to build the whole app myself. This question is just as much a question about achieving true rowspan as that feature is not availible in the android framework. – Kasper Moerch Sep 14 '11 at 6:36
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.